ReaderScanner.java

1
package com.fasterxml.aalto.in;
2
3
import java.io.*;
4
5
import javax.xml.stream.XMLStreamException;
6
7
import org.codehaus.stax2.XMLStreamLocation2;
8
9
import com.fasterxml.aalto.impl.ErrorConsts;
10
import com.fasterxml.aalto.impl.IoStreamException;
11
import com.fasterxml.aalto.impl.LocationImpl;
12
import com.fasterxml.aalto.util.DataUtil;
13
import com.fasterxml.aalto.util.TextBuilder;
14
import com.fasterxml.aalto.util.XmlCharTypes;
15
import com.fasterxml.aalto.util.XmlChars;
16
import com.fasterxml.aalto.util.XmlConsts;
17
18
/**
19
 * This is the concrete scanner implementation used when input comes
20
 * as a {@link java.io.Reader}. In general using this scanner is quite
21
 * a bit less optimal than that of {@link java.io.InputStream} based
22
 * scanner. Nonetheless, it is included for completeness, since Stax
23
 * interface allows passing Readers as input sources.
24
 */
25
public final class ReaderScanner
26
    extends XmlScanner
27
{
28
    /**
29
     * Although java chars are basically UTF-16 in memory, the closest
30
     * match for char types is Latin1.
31
     */
32
    private final static XmlCharTypes sCharTypes = InputCharTypes.getLatin1CharTypes();
33
34
    /*
35
    /**********************************************************************
36
    /* Configuration
37
    /**********************************************************************
38
     */
39
40
    /**
41
     * Underlying InputStream to use for reading content.
42
     */
43
    protected Reader _in;
44
45
    /*
46
    /**********************************************************************
47
    /* Input buffering
48
    /**********************************************************************
49
     */
50
51
    protected char[] _inputBuffer;
52
53
    protected int _inputPtr;
54
55
    protected int _inputEnd;
56
57
    /**
58
     * Storage location for a single character that can not be pushed
59
     * back (for example, multi-byte char)
60
     */
61 12 1. : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and fieldmTmpChar mutated with null check on object → SURVIVED
2. : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and fieldmTmpChar mutated with null check on object → SURVIVED
3. : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR
4. : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
7. : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
12. : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
    protected int mTmpChar = INT_NULL;
62
63
    /*
64
    /**********************************************************************
65
    /* Symbol handling
66
    /**********************************************************************
67
    */
68
69
    /**
70
     * For now, symbol table contains prefixed names. In future it is
71
     * possible that they may be split into prefixes and local names?
72
     */
73
    protected final CharBasedPNameTable _symbols;
74
75
    /*
76
    /**********************************************************************
77
    /* Life-cycle
78
    /**********************************************************************
79
     */
80
81
    public ReaderScanner(ReaderConfig cfg, Reader r,
82
                         char[] buffer, int ptr, int last)
83
    {
84
        super(cfg);
85 1 1. : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → SURVIVED
        _in = r;
86 1 1. : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
        _inputBuffer = buffer;
87 1 1. : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
        _inputPtr = ptr;
88 1 1. : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
        _inputEnd = last;
89 6 1. : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_pastBytesOrChars mutated with null check on object → SURVIVED
2. : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        _pastBytesOrChars = 0; // should it be passed by caller?
90 6 1. : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → SURVIVED
2. : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        _rowStartOffset = 0; // should probably be passed by caller...
91
 
92 1 1. : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_symbols mutated with null check on object → SURVIVED
        _symbols = cfg.getCBSymbols();
93
   }
94
95
    public ReaderScanner(ReaderConfig cfg, Reader r)
96
    {
97
        super(cfg);
98 1 1. : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → NO_COVERAGE
        _in = r;
99 6 1. : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. : Bug fixed: CRCR replace with One, Substituted 4000 with 1 → NO_COVERAGE
5. : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
        _inputBuffer = cfg.allocFullCBuffer(ReaderConfig.DEFAULT_CHAR_BUFFER_LEN);
100 7 1. : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
7. : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
        _inputPtr = _inputEnd = 0;
101 6 1. : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_pastBytesOrChars mutated with null check on object → NO_COVERAGE
        _pastBytesOrChars = 0; // should it be passed by caller?
102 6 1. : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → NO_COVERAGE
        _rowStartOffset = 0; // should probably be passed by caller...
103
104 1 1. : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_symbols mutated with null check on object → NO_COVERAGE
        _symbols = cfg.getCBSymbols();
105
    }
106
107
    @Override
108
    protected void _releaseBuffers()
109
    {
110 1 1. _releaseBuffers : removed call to com/fasterxml/aalto/in/XmlScanner::_releaseBuffers → SURVIVED
        super._releaseBuffers();
111 7 1. _releaseBuffers : negated conditional → SURVIVED
2. _releaseBuffers : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_symbols mutated with null check on object → SURVIVED
3. _releaseBuffers : changed conditional boundary to IFGE → SURVIVED
4. _releaseBuffers : changed conditional boundary to IFGT → SURVIVED
5. _releaseBuffers : changed conditional boundary to IFLE → SURVIVED
6. _releaseBuffers : changed conditional boundary to IFLT → SURVIVED
7. _releaseBuffers : changed conditional boundary to IFNE → SURVIVED
        if (_symbols.maybeDirty()) {
112 3 1. _releaseBuffers : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_config mutated with null check on object → SURVIVED
2. _releaseBuffers : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_symbols mutated with null check on object → SURVIVED
3. _releaseBuffers : removed call to com/fasterxml/aalto/in/ReaderConfig::updateCBSymbols → SURVIVED
            _config.updateCBSymbols(_symbols);
113
        }
114
        /* Note: if we have block input (_in == null), the buffer we
115
         * use is not owned by scanner, can't recycle
116
         * Also note that this method will always get called before
117
         * _closeSource(); so that _in won't be cleared before we
118
         * have a chance to see it.
119
         */
120 2 1. _releaseBuffers : negated conditional → SURVIVED
2. _releaseBuffers : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → SURVIVED
        if (_in != null) {
121 2 1. _releaseBuffers : negated conditional → SURVIVED
2. _releaseBuffers : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
            if (_inputBuffer != null) {
122 3 1. _releaseBuffers : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_config mutated with null check on object → SURVIVED
2. _releaseBuffers : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
3. _releaseBuffers : removed call to com/fasterxml/aalto/in/ReaderConfig::freeFullCBuffer → SURVIVED
                _config.freeFullCBuffer(_inputBuffer);
123 1 1. _releaseBuffers : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
                _inputBuffer = null;
124
            }
125
        }
126
    }
127
128
    @Override
129
    protected void _closeSource() throws IOException
130
    {
131 2 1. _closeSource : negated conditional → NO_COVERAGE
2. _closeSource : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → NO_COVERAGE
        if (_in != null) {
132 2 1. _closeSource : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → NO_COVERAGE
2. _closeSource : removed call to java/io/Reader::close → NO_COVERAGE
            _in.close();
133 1 1. _closeSource : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → NO_COVERAGE
            _in = null;
134
        }
135
    }
136
137
    /*
138
    /**********************************************************************
139
    /* Public scanner interface (1st level parsing)
140
    /**********************************************************************
141
     */
142
143
    @Override
144
    protected final void finishToken() throws XMLStreamException
145
    {
146 6 1. finishToken : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
2. finishToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR
3. finishToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. finishToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. finishToken : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. finishToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        _tokenIncomplete = false;
147 1 1. finishToken : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED
        switch (_currToken) {
148
        case PROCESSING_INSTRUCTION:
149 1 1. finishToken : removed call to com/fasterxml/aalto/in/ReaderScanner::finishPI → NO_COVERAGE
            finishPI();
150
            break;
151
        case CHARACTERS:
152 1 1. finishToken : removed call to com/fasterxml/aalto/in/ReaderScanner::finishCharacters → KILLED
            finishCharacters();
153
            break;
154
        case COMMENT:
155 1 1. finishToken : removed call to com/fasterxml/aalto/in/ReaderScanner::finishComment → NO_COVERAGE
            finishComment();
156
            break;
157
        case SPACE:
158 1 1. finishToken : removed call to com/fasterxml/aalto/in/ReaderScanner::finishSpace → NO_COVERAGE
            finishSpace();
159
            break;
160
        case DTD:
161 6 1. finishToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. finishToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. finishToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. finishToken : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. finishToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. finishToken : removed call to com/fasterxml/aalto/in/ReaderScanner::finishDTD → KILLED
            finishDTD(true); // true -> get text
162
            break;
163
        case CDATA:
164 1 1. finishToken : removed call to com/fasterxml/aalto/in/ReaderScanner::finishCData → KILLED
            finishCData();
165
            break;
166
        default:
167 1 1. finishToken : removed call to com/fasterxml/aalto/impl/ErrorConsts::throwInternalError → NO_COVERAGE
            ErrorConsts.throwInternalError();
168
        }
169
    }
170
    
171
    // // // First, main iteration methods
172
173
    @Override
174
    public final int nextFromProlog(boolean isProlog) throws XMLStreamException
175
    {
176 7 1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
2. nextFromProlog : changed conditional boundary to IFLE → SURVIVED
3. nextFromProlog : negated conditional → KILLED
4. nextFromProlog : changed conditional boundary to IFGE → KILLED
5. nextFromProlog : changed conditional boundary to IFGT → KILLED
6. nextFromProlog : changed conditional boundary to IFLT → KILLED
7. nextFromProlog : changed conditional boundary to IFNE → KILLED
        if (_tokenIncomplete) { // left-overs from last thingy?
177
            skipToken();
178
        }
179
180
        // First: keep track of where event started
181 1 1. nextFromProlog : removed call to com/fasterxml/aalto/in/ReaderScanner::setStartLocation → KILLED
        setStartLocation();
182
183
        // Ok: we should get a WS or '<'. So, let's skip through WS
184
        while (true) {
185
            // Any more data? Just need a single byte
186 9 1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
3. nextFromProlog : changed conditional boundary to IF_ICMPNE → SURVIVED
4. nextFromProlog : changed conditional boundary → KILLED
5. nextFromProlog : negated conditional → KILLED
6. nextFromProlog : changed conditional boundary to IF_ICMPEQ → KILLED
7. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
8. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
9. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
            if (_inputPtr >= _inputEnd) {
187 6 1. nextFromProlog : changed conditional boundary to IFGT → SURVIVED
2. nextFromProlog : changed conditional boundary to IFLT → SURVIVED
3. nextFromProlog : negated conditional → KILLED
4. nextFromProlog : changed conditional boundary to IFEQ → KILLED
5. nextFromProlog : changed conditional boundary to IFGE → KILLED
6. nextFromProlog : changed conditional boundary to IFLE → KILLED
                if (!loadMore()) {
188 1 1. nextFromProlog : removed call to com/fasterxml/aalto/in/ReaderScanner::setStartLocation → SURVIVED
                    setStartLocation();
189 6 1. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
5. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
                    return TOKEN_EOI;
190
                }
191
            }
192 15 1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. nextFromProlog : Replaced operate with second operand → KILLED
12. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. nextFromProlog : Replaced bitwise AND with OR → KILLED
14. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            int c = _inputBuffer[_inputPtr++] & 0xFF;
193
194
            // Really should get white space or '<'...
195 11 1. nextFromProlog : changed conditional boundary to IF_ICMPLT → SURVIVED
2. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED
6. nextFromProlog : negated conditional → KILLED
7. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. nextFromProlog : changed conditional boundary to IF_ICMPEQ → KILLED
9. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
10. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
11. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
            if (c == '<') {
196
                break;
197
            }
198 11 1. nextFromProlog : changed conditional boundary to IF_ICMPGE → SURVIVED
2. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR
3. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
6. nextFromProlog : negated conditional → KILLED
7. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
9. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
10. nextFromProlog : changed conditional boundary to IF_ICMPLT → KILLED
11. nextFromProlog : changed conditional boundary to IF_ICMPNE → KILLED
            if (c != ' ') {
199 11 1. nextFromProlog : changed conditional boundary to IF_ICMPGT → SURVIVED
2. nextFromProlog : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromProlog : changed conditional boundary to IF_ICMPLT → SURVIVED
4. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
8. nextFromProlog : negated conditional → KILLED
9. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. nextFromProlog : changed conditional boundary to IF_ICMPEQ → KILLED
11. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
                if (c == '\n') {
200 1 1. nextFromProlog : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → SURVIVED
                    markLF();
201 11 1. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE
5. nextFromProlog : negated conditional → NO_COVERAGE
6. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. nextFromProlog : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. nextFromProlog : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. nextFromProlog : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. nextFromProlog : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. nextFromProlog : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                } else if (c == '\r') {
202 9 1. nextFromProlog : changed conditional boundary → NO_COVERAGE
2. nextFromProlog : negated conditional → NO_COVERAGE
3. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. nextFromProlog : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. nextFromProlog : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. nextFromProlog : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. nextFromProlog : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. nextFromProlog : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (_inputPtr >= _inputEnd) {
203 6 1. nextFromProlog : negated conditional → NO_COVERAGE
2. nextFromProlog : changed conditional boundary to IFEQ → NO_COVERAGE
3. nextFromProlog : changed conditional boundary to IFGE → NO_COVERAGE
4. nextFromProlog : changed conditional boundary to IFGT → NO_COVERAGE
5. nextFromProlog : changed conditional boundary to IFLE → NO_COVERAGE
6. nextFromProlog : changed conditional boundary to IFLT → NO_COVERAGE
                        if (!loadMore()) {
204 1 1. nextFromProlog : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                            markLF();
205 1 1. nextFromProlog : removed call to com/fasterxml/aalto/in/ReaderScanner::setStartLocation → NO_COVERAGE
                            setStartLocation();
206 6 1. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. nextFromProlog : Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE
5. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                            return TOKEN_EOI;
207
                        }
208
                    }
209 13 1. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. nextFromProlog : negated conditional → NO_COVERAGE
6. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. nextFromProlog : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. nextFromProlog : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. nextFromProlog : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. nextFromProlog : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. nextFromProlog : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                    if (_inputBuffer[_inputPtr] == '\n') {
210 8 1. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. nextFromProlog : Replaced operate with second operand → NO_COVERAGE
6. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        ++_inputPtr;
211
                    }
212 1 1. nextFromProlog : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                    markLF();
213 11 1. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE
5. nextFromProlog : negated conditional → NO_COVERAGE
6. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. nextFromProlog : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
8. nextFromProlog : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. nextFromProlog : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. nextFromProlog : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. nextFromProlog : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                } else if (c != '\t') {
214 1 1. nextFromProlog : removed call to com/fasterxml/aalto/in/ReaderScanner::reportPrologUnexpChar → NO_COVERAGE
                    reportPrologUnexpChar(isProlog, c, null);
215
                }
216
            }
217
        }
218
219
        // Ok, got LT:
220 9 1. nextFromProlog : changed conditional boundary → SURVIVED
2. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. nextFromProlog : changed conditional boundary to IF_ICMPNE → SURVIVED
5. nextFromProlog : negated conditional → KILLED
6. nextFromProlog : changed conditional boundary to IF_ICMPEQ → KILLED
7. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
8. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
9. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
        if (_inputPtr >= _inputEnd) {
221 6 1. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 5 with 1 → NO_COVERAGE
5. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. nextFromProlog : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
            loadMoreGuaranteed(COMMENT);
222
        }
223 9 1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. nextFromProlog : Replaced operate with second operand → KILLED
9. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        char c = _inputBuffer[_inputPtr++];
224 11 1. nextFromProlog : changed conditional boundary to IF_ICMPGT → SURVIVED
2. nextFromProlog : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 33 with 1 → KILLED
7. nextFromProlog : negated conditional → KILLED
8. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. nextFromProlog : changed conditional boundary to IF_ICMPEQ → KILLED
10. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
11. nextFromProlog : changed conditional boundary to IF_ICMPLT → KILLED
        if (c == '!') { // comment/DOCTYPE? (CDATA not legal)
225 1 1. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
            return handlePrologDeclStart(isProlog);
226
        }
227 11 1. nextFromProlog : changed conditional boundary to IF_ICMPGT → SURVIVED
2. nextFromProlog : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
7. nextFromProlog : negated conditional → KILLED
8. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. nextFromProlog : changed conditional boundary to IF_ICMPEQ → KILLED
10. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
11. nextFromProlog : changed conditional boundary to IF_ICMPLT → KILLED
        if (c == '?') {
228 1 1. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
            return handlePIStart();
229
        }
230
        /* End tag not allowed if no open tree; and only one root
231
         * element (one root-level start tag)
232
         */
233 17 1. nextFromProlog : changed conditional boundary to IF_ICMPLT → SURVIVED
2. nextFromProlog : changed conditional boundary to IFGE → SURVIVED
3. nextFromProlog : changed conditional boundary to IFGT → SURVIVED
4. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED
8. nextFromProlog : negated conditional → KILLED
9. nextFromProlog : negated conditional → KILLED
10. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
12. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
13. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
14. nextFromProlog : changed conditional boundary to IF_ICMPNE → KILLED
15. nextFromProlog : changed conditional boundary to IFEQ → KILLED
16. nextFromProlog : changed conditional boundary to IFLE → KILLED
17. nextFromProlog : changed conditional boundary to IFLT → KILLED
        if (c == '/' || !isProlog) {
234 1 1. nextFromProlog : removed call to com/fasterxml/aalto/in/ReaderScanner::reportPrologUnexpChar → NO_COVERAGE
            reportPrologUnexpChar(isProlog, c, " (unbalanced start/end tags?)");
235
        }
236 1 1. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
        return handleStartElement(c);
237
    }
238
    
239
    @Override
240
    public final int nextFromTree() throws XMLStreamException
241
    {
242 7 1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
2. nextFromTree : changed conditional boundary to IFLE → SURVIVED
3. nextFromTree : negated conditional → KILLED
4. nextFromTree : changed conditional boundary to IFGE → KILLED
5. nextFromTree : changed conditional boundary to IFGT → KILLED
6. nextFromTree : changed conditional boundary to IFLT → KILLED
7. nextFromTree : changed conditional boundary to IFNE → KILLED
        if (_tokenIncomplete) { // left-overs?
243 6 1. nextFromTree : changed conditional boundary to IFGE → SURVIVED
2. nextFromTree : changed conditional boundary to IFLE → SURVIVED
3. nextFromTree : negated conditional → KILLED
4. nextFromTree : changed conditional boundary to IFGT → KILLED
5. nextFromTree : changed conditional boundary to IFLT → KILLED
6. nextFromTree : changed conditional boundary to IFNE → KILLED
            if (skipToken()) { // Figured out next event (ENTITY_REFERENCE)?
244
                // !!! We don't yet parse DTD, don't know real contents
245 1 1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                return _nextEntity();
246
            }
247
        } else { // note: START_ELEMENT/END_ELEMENT never incomplete
248 12 1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
4. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. nextFromTree : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. nextFromTree : negated conditional → KILLED
9. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
12. nextFromTree : changed conditional boundary to IF_ICMPLT → KILLED
            if (_currToken == START_ELEMENT) {
249 7 1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_isEmptyTag mutated with null check on object → SURVIVED
2. nextFromTree : changed conditional boundary to IFLE → SURVIVED
3. nextFromTree : negated conditional → KILLED
4. nextFromTree : changed conditional boundary to IFGE → KILLED
5. nextFromTree : changed conditional boundary to IFGT → KILLED
6. nextFromTree : changed conditional boundary to IFLT → KILLED
7. nextFromTree : changed conditional boundary to IFNE → KILLED
                if (_isEmptyTag) {
250
                    // Important: retain same start location as with START_ELEMENT, don't overwrite
251 8 1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_depth mutated with null check on object → SURVIVED
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_depth mutated with null check on object → SURVIVED
3. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. nextFromTree : Replaced operate with second operand → KILLED
8. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                    --_depth;
252 7 1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
                    return (_currToken = END_ELEMENT);
253
                }
254 12 1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
4. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. nextFromTree : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
8. nextFromTree : negated conditional → KILLED
9. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
12. nextFromTree : changed conditional boundary to IF_ICMPLT → KILLED
            } else if (_currToken == END_ELEMENT) {
255 2 1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currElem mutated with null check on object → SURVIVED
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currElem mutated with null check on object → SURVIVED
                _currElem = _currElem.getParent();
256
                // Any namespace declarations that need to be unbound?
257 11 1. nextFromTree : changed conditional boundary → SURVIVED
2. nextFromTree : negated conditional → SURVIVED
3. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_lastNsDecl mutated with null check on object → SURVIVED
4. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_lastNsDecl mutated with null check on object → SURVIVED
5. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_depth mutated with null check on object → SURVIVED
6. nextFromTree : changed conditional boundary to IF_ICMPEQ → SURVIVED
7. nextFromTree : changed conditional boundary to IF_ICMPGE → SURVIVED
8. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
9. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
10. nextFromTree : changed conditional boundary to IF_ICMPNE → SURVIVED
11. nextFromTree : negated conditional → KILLED
                while (_lastNsDecl != null && _lastNsDecl.getLevel() >= _depth) {
258 2 1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_lastNsDecl mutated with null check on object → NO_COVERAGE
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_lastNsDecl mutated with null check on object → NO_COVERAGE
                    _lastNsDecl = _lastNsDecl.unbind();
259
                }
260
            } else {
261
                // It's possible CHARACTERS entity with an entity ref:
262 7 1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_entityPending mutated with null check on object → SURVIVED
2. nextFromTree : changed conditional boundary to IFGE → SURVIVED
3. nextFromTree : changed conditional boundary to IFLE → SURVIVED
4. nextFromTree : negated conditional → KILLED
5. nextFromTree : changed conditional boundary to IFGT → KILLED
6. nextFromTree : changed conditional boundary to IFLT → KILLED
7. nextFromTree : changed conditional boundary to IFNE → KILLED
                if (_entityPending) {
263 6 1. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. nextFromTree : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_entityPending mutated with null check on object → NO_COVERAGE
                    _entityPending = false;
264 1 1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                    return _nextEntity();
265
                }
266
            }
267
        }
268
        // and except for special cases, mark down actual start location of the event
269 1 1. nextFromTree : removed call to com/fasterxml/aalto/in/ReaderScanner::setStartLocation → KILLED
        setStartLocation();
270
271
        /* Any more data? Although it'd be an error not to get any,
272
         * let's leave error reporting up to caller
273
         */
274 9 1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
3. nextFromTree : changed conditional boundary to IF_ICMPNE → SURVIVED
4. nextFromTree : changed conditional boundary → KILLED
5. nextFromTree : negated conditional → KILLED
6. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
7. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
8. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
9. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
        if (_inputPtr >= _inputEnd) {
275 6 1. nextFromTree : changed conditional boundary to IFGE → SURVIVED
2. nextFromTree : changed conditional boundary to IFGT → SURVIVED
3. nextFromTree : negated conditional → KILLED
4. nextFromTree : changed conditional boundary to IFEQ → KILLED
5. nextFromTree : changed conditional boundary to IFLE → KILLED
6. nextFromTree : changed conditional boundary to IFLT → KILLED
            if (!loadMore()) {
276 1 1. nextFromTree : removed call to com/fasterxml/aalto/in/ReaderScanner::setStartLocation → NO_COVERAGE
                setStartLocation();
277 6 1. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. nextFromTree : Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE
5. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                return TOKEN_EOI;
278
            }
279
        }
280 2 1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
        char c = _inputBuffer[_inputPtr];
281
282
        /* Can get pretty much any type; start/end element, comment/PI,
283
         * CDATA, text, entity reference...
284
         */
285 11 1. nextFromTree : negated conditional → TIMED_OUT
2. nextFromTree : changed conditional boundary to IF_ICMPEQ → TIMED_OUT
3. nextFromTree : changed conditional boundary to IF_ICMPGE → TIMED_OUT
4. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. nextFromTree : Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED
8. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPLT → KILLED
        if (c == '<') { // root element, comment, proc instr?
286 8 1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. nextFromTree : Replaced operate with second operand → KILLED
8. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            ++_inputPtr;
287 23 1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
3. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
4. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
5. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
6. nextFromTree : changed conditional boundary to IF_ICMPEQ → SURVIVED
7. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
11. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
12. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
13. nextFromTree : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
14. nextFromTree : Replaced operate with second operand → KILLED
15. nextFromTree : Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED
16. nextFromTree : changed conditional boundary → KILLED
17. nextFromTree : negated conditional → KILLED
18. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
19. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
20. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
21. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
22. nextFromTree : changed conditional boundary to IF_ICMPLT → KILLED
23. nextFromTree : changed conditional boundary to IF_ICMPNE → KILLED
            c = (_inputPtr < _inputEnd) ? _inputBuffer[_inputPtr++] : loadOne(COMMENT);
288 11 1. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
2. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with One, Substituted 33 with 1 → KILLED
7. nextFromTree : negated conditional → KILLED
8. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPLT → KILLED
            if (c == '!') { // comment or CDATA
289 1 1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
                return handleCommentOrCdataStart();
290
            }
291 11 1. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
5. nextFromTree : negated conditional → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
8. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
9. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPLT → KILLED
            if (c == '?') {
292 1 1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
                return handlePIStart();
293
            }
294 11 1. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
2. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED
7. nextFromTree : negated conditional → KILLED
8. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPLT → KILLED
            if (c == '/') {
295 1 1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
                return handleEndElement();
296
            }
297 1 1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
            return handleStartElement(c);
298
        }
299 11 1. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with One, Substituted 38 with 1 → KILLED
5. nextFromTree : negated conditional → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
8. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
9. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPLT → KILLED
        if (c == '&') { // entity reference
300 8 1. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. nextFromTree : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. nextFromTree : Replaced operate with second operand → NO_COVERAGE
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
            ++_inputPtr;
301
            /* Need to expand; should indicate either text, or an unexpanded
302
             * entity reference
303
             */
304 5 1. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. nextFromTree : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
            int i = handleEntityInText(false);
305 6 1. nextFromTree : negated conditional → NO_COVERAGE
2. nextFromTree : changed conditional boundary to IFEQ → NO_COVERAGE
3. nextFromTree : changed conditional boundary to IFGE → NO_COVERAGE
4. nextFromTree : changed conditional boundary to IFGT → NO_COVERAGE
5. nextFromTree : changed conditional boundary to IFLE → NO_COVERAGE
6. nextFromTree : changed conditional boundary to IFLT → NO_COVERAGE
            if (i == 0) { // general entity
306 7 1. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. nextFromTree : Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE
5. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → NO_COVERAGE
7. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                return (_currToken = ENTITY_REFERENCE);
307
            }
308
            /* Nope, a char entity; need to indicate it came from an entity.
309
             * Since we may want to store the char as is, too, let's negate
310
             * entity-based char
311
             */
312 2 1. nextFromTree : removed negation → NO_COVERAGE
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and fieldmTmpChar mutated with null check on object → NO_COVERAGE
            mTmpChar = -i;
313
        } else {
314
            /* Let's store it for future reference. May or may not be used --
315
             * so let's not advance input ptr quite yet.
316
             */
317 1 1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and fieldmTmpChar mutated with null check on object → SURVIVED
            mTmpChar = c;
318
        }
319
        // text, possibly/probably ok
320 7 1. nextFromTree : negated conditional → SURVIVED
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED
3. nextFromTree : changed conditional boundary to IFGE → SURVIVED
4. nextFromTree : changed conditional boundary to IFGT → SURVIVED
5. nextFromTree : changed conditional boundary to IFLE → SURVIVED
6. nextFromTree : changed conditional boundary to IFLT → SURVIVED
7. nextFromTree : changed conditional boundary to IFNE → SURVIVED
        if (_cfgLazyParsing) {
321 6 1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
2. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            _tokenIncomplete = true;
322
        } else {
323 1 1. nextFromTree : removed call to com/fasterxml/aalto/in/ReaderScanner::finishCharacters → KILLED
            finishCharacters();
324
        }
325 7 1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR
3. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
        return (_currToken = CHARACTERS);
326
    }
327
328
    /**
329
     * Helper method used to isolate things that need to be (re)set in
330
     * cases where 
331
     */
332
    protected int _nextEntity() {
333
        // !!! Also, have to assume start location has been set or such
334 1 1. _nextEntity : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
        _textBuilder.resetWithEmpty();
335
        // !!! TODO: handle start location?
336 7 1. _nextEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. _nextEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. _nextEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. _nextEntity : Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE
5. _nextEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. _nextEntity : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → NO_COVERAGE
7. _nextEntity : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
        return (_currToken = ENTITY_REFERENCE);
337
    }
338
    
339
    /*
340
    /**********************************************************************
341
    /* 2nd level parsing
342
    /**********************************************************************
343
     */
344
345
    protected final int handlePrologDeclStart(boolean isProlog) throws XMLStreamException
346
    {
347 9 1. handlePrologDeclStart : changed conditional boundary → SURVIVED
2. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handlePrologDeclStart : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handlePrologDeclStart : negated conditional → KILLED
6. handlePrologDeclStart : changed conditional boundary to IF_ICMPEQ → KILLED
7. handlePrologDeclStart : changed conditional boundary to IF_ICMPGE → KILLED
8. handlePrologDeclStart : changed conditional boundary to IF_ICMPGT → KILLED
9. handlePrologDeclStart : changed conditional boundary to IF_ICMPGT → KILLED
        if (_inputPtr >= _inputEnd) {
348 1 1. handlePrologDeclStart : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
            loadMoreGuaranteed();
349
        }
350 9 1. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handlePrologDeclStart : Replaced operate with second operand → KILLED
9. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        char c = _inputBuffer[_inputPtr++];
351 11 1. handlePrologDeclStart : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handlePrologDeclStart : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED
7. handlePrologDeclStart : negated conditional → KILLED
8. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handlePrologDeclStart : changed conditional boundary to IF_ICMPEQ → KILLED
10. handlePrologDeclStart : changed conditional boundary to IF_ICMPGE → KILLED
11. handlePrologDeclStart : changed conditional boundary to IF_ICMPLT → KILLED
        if (c == '-') { // Comment?
352 9 1. handlePrologDeclStart : changed conditional boundary → SURVIVED
2. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handlePrologDeclStart : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handlePrologDeclStart : negated conditional → KILLED
6. handlePrologDeclStart : changed conditional boundary to IF_ICMPEQ → KILLED
7. handlePrologDeclStart : changed conditional boundary to IF_ICMPGE → KILLED
8. handlePrologDeclStart : changed conditional boundary to IF_ICMPGT → KILLED
9. handlePrologDeclStart : changed conditional boundary to IF_ICMPGT → KILLED
            if (_inputPtr >= _inputEnd) {
353 1 1. handlePrologDeclStart : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                loadMoreGuaranteed();
354
            }
355 9 1. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handlePrologDeclStart : Replaced operate with second operand → KILLED
9. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            c = _inputBuffer[_inputPtr++];
356 11 1. handlePrologDeclStart : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handlePrologDeclStart : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handlePrologDeclStart : changed conditional boundary to IF_ICMPLT → SURVIVED
4. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED
8. handlePrologDeclStart : negated conditional → KILLED
9. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handlePrologDeclStart : changed conditional boundary to IF_ICMPEQ → KILLED
11. handlePrologDeclStart : changed conditional boundary to IF_ICMPGE → KILLED
            if (c == '-') {
357 7 1. handlePrologDeclStart : negated conditional → SURVIVED
2. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED
3. handlePrologDeclStart : changed conditional boundary to IFGE → SURVIVED
4. handlePrologDeclStart : changed conditional boundary to IFGT → SURVIVED
5. handlePrologDeclStart : changed conditional boundary to IFLE → SURVIVED
6. handlePrologDeclStart : changed conditional boundary to IFLT → SURVIVED
7. handlePrologDeclStart : changed conditional boundary to IFNE → SURVIVED
                if (_cfgLazyParsing) {
358 6 1. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → NO_COVERAGE
                    _tokenIncomplete = true;
359
                } else {
360 1 1. handlePrologDeclStart : removed call to com/fasterxml/aalto/in/ReaderScanner::finishComment → KILLED
                    finishComment();
361
                }
362 7 1. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED
2. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED
6. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. handlePrologDeclStart : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
                return (_currToken = COMMENT);
363
            }
364 11 1. handlePrologDeclStart : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handlePrologDeclStart : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handlePrologDeclStart : changed conditional boundary to IF_ICMPLT → SURVIVED
4. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 68 with 1 → KILLED
8. handlePrologDeclStart : negated conditional → KILLED
9. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handlePrologDeclStart : changed conditional boundary to IF_ICMPEQ → KILLED
11. handlePrologDeclStart : changed conditional boundary to IF_ICMPGE → KILLED
        } else if (c == 'D') { // DOCTYPE?
365 6 1. handlePrologDeclStart : changed conditional boundary to IFLE → SURVIVED
2. handlePrologDeclStart : changed conditional boundary to IFLT → SURVIVED
3. handlePrologDeclStart : negated conditional → KILLED
4. handlePrologDeclStart : changed conditional boundary to IFGE → KILLED
5. handlePrologDeclStart : changed conditional boundary to IFGT → KILLED
6. handlePrologDeclStart : changed conditional boundary to IFNE → KILLED
            if (isProlog) { // no DOCTYPE in epilog
366
                handleDtdStart();
367
                // incomplete flag is set by handleDtdStart
368 7 1. handlePrologDeclStart : negated conditional → SURVIVED
2. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED
3. handlePrologDeclStart : changed conditional boundary to IFEQ → SURVIVED
4. handlePrologDeclStart : changed conditional boundary to IFGE → SURVIVED
5. handlePrologDeclStart : changed conditional boundary to IFGT → SURVIVED
6. handlePrologDeclStart : changed conditional boundary to IFLE → SURVIVED
7. handlePrologDeclStart : changed conditional boundary to IFLT → SURVIVED
                if (!_cfgLazyParsing) {
369 7 1. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
2. handlePrologDeclStart : changed conditional boundary to IFGE → SURVIVED
3. handlePrologDeclStart : changed conditional boundary to IFLE → SURVIVED
4. handlePrologDeclStart : negated conditional → KILLED
5. handlePrologDeclStart : changed conditional boundary to IFGT → KILLED
6. handlePrologDeclStart : changed conditional boundary to IFLT → KILLED
7. handlePrologDeclStart : changed conditional boundary to IFNE → KILLED
                    if (_tokenIncomplete) {
370 6 1. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handlePrologDeclStart : removed call to com/fasterxml/aalto/in/ReaderScanner::finishDTD → NO_COVERAGE
                        finishDTD(true); // must copy contents, may be needed
371 6 1. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → NO_COVERAGE
                        _tokenIncomplete = false;
372
                    }
373
                }
374 6 1. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 11 with 1 → KILLED
5. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handlePrologDeclStart : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
                return DTD;
375
            }
376
        }
377
378
        /* error... for error recovery purposes, let's just pretend
379
         * like it was unfinished CHARACTERS, though.
380
         */
381 6 1. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → NO_COVERAGE
        _tokenIncomplete = true;
382 6 1. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 4 with 1 → NO_COVERAGE
5. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → NO_COVERAGE
        _currToken = CHARACTERS;
383 1 1. handlePrologDeclStart : removed call to com/fasterxml/aalto/in/ReaderScanner::reportPrologUnexpChar → NO_COVERAGE
        reportPrologUnexpChar(isProlog, c, " (expected '-' for COMMENT)");
384 2 1. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → NO_COVERAGE
2. handlePrologDeclStart : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
        return _currToken; // never gets here
385
    }
386
387
    private final int handleDtdStart()
388
        throws XMLStreamException
389
    {
390 1 1. handleDtdStart : removed call to com/fasterxml/aalto/in/ReaderScanner::matchAsciiKeyword → KILLED
        matchAsciiKeyword("DOCTYPE");
391
        // And then some white space and root  name
392 5 1. handleDtdStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDtdStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDtdStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDtdStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleDtdStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        char c = skipInternalWs(true, "after DOCTYPE keyword, before root name");
393 1 1. handleDtdStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenName mutated with null check on object → SURVIVED
        _tokenName = parsePName(c);
394 5 1. handleDtdStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDtdStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDtdStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDtdStart : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleDtdStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        c = skipInternalWs(false, null);
395
        
396
        //boolean gotId;
397
        
398 11 1. handleDtdStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDtdStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDtdStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDtdStart : Bug fixed: CRCR replace with One, Substituted 80 with 1 → KILLED
5. handleDtdStart : negated conditional → KILLED
6. handleDtdStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. handleDtdStart : changed conditional boundary to IF_ICMPEQ → KILLED
8. handleDtdStart : changed conditional boundary to IF_ICMPGE → KILLED
9. handleDtdStart : changed conditional boundary to IF_ICMPGT → KILLED
10. handleDtdStart : changed conditional boundary to IF_ICMPGT → KILLED
11. handleDtdStart : changed conditional boundary to IF_ICMPLT → KILLED
        if (c == 'P') { // PUBLIC
399 1 1. handleDtdStart : removed call to com/fasterxml/aalto/in/ReaderScanner::matchAsciiKeyword → KILLED
            matchAsciiKeyword("PUBLIC");
400 5 1. handleDtdStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDtdStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDtdStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDtdStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleDtdStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            c = skipInternalWs(true, null);
401 1 1. handleDtdStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_publicId mutated with null check on object → SURVIVED
            _publicId = parsePublicId(c);
402 5 1. handleDtdStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDtdStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDtdStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDtdStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleDtdStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            c = skipInternalWs(true, null);
403 1 1. handleDtdStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_systemId mutated with null check on object → SURVIVED
            _systemId = parseSystemId(c);
404 5 1. handleDtdStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDtdStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDtdStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDtdStart : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleDtdStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            c = skipInternalWs(false, null);
405 11 1. handleDtdStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDtdStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDtdStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDtdStart : Bug fixed: CRCR replace with One, Substituted 83 with 1 → KILLED
5. handleDtdStart : negated conditional → KILLED
6. handleDtdStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. handleDtdStart : changed conditional boundary to IF_ICMPEQ → KILLED
8. handleDtdStart : changed conditional boundary to IF_ICMPGE → KILLED
9. handleDtdStart : changed conditional boundary to IF_ICMPGT → KILLED
10. handleDtdStart : changed conditional boundary to IF_ICMPGT → KILLED
11. handleDtdStart : changed conditional boundary to IF_ICMPLT → KILLED
        } else if (c == 'S') { // SYSTEM
406 1 1. handleDtdStart : removed call to com/fasterxml/aalto/in/ReaderScanner::matchAsciiKeyword → NO_COVERAGE
            matchAsciiKeyword("SYSTEM");
407 5 1. handleDtdStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDtdStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDtdStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDtdStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleDtdStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
            c = skipInternalWs(true, null);
408 1 1. handleDtdStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_publicId mutated with null check on object → NO_COVERAGE
            _publicId = null;
409 1 1. handleDtdStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_systemId mutated with null check on object → NO_COVERAGE
            _systemId = parseSystemId(c);
410 5 1. handleDtdStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDtdStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDtdStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDtdStart : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleDtdStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
            c = skipInternalWs(false, null);
411
        } else {
412 2 1. handleDtdStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_systemId mutated with null check on object → SURVIVED
2. handleDtdStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_publicId mutated with null check on object → SURVIVED
            _publicId = _systemId = null;
413
        }
414
        
415
        /* Ok; so, need to get either an internal subset, or the
416
         * end:
417
         */
418 11 1. handleDtdStart : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handleDtdStart : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleDtdStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleDtdStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleDtdStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleDtdStart : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
7. handleDtdStart : negated conditional → KILLED
8. handleDtdStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handleDtdStart : changed conditional boundary to IF_ICMPEQ → KILLED
10. handleDtdStart : changed conditional boundary to IF_ICMPGE → KILLED
11. handleDtdStart : changed conditional boundary to IF_ICMPLT → KILLED
        if (c == '>') { // fine, we are done
419 6 1. handleDtdStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
2. handleDtdStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDtdStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDtdStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDtdStart : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleDtdStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            _tokenIncomplete = false;
420 7 1. handleDtdStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED
2. handleDtdStart : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
3. handleDtdStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleDtdStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleDtdStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleDtdStart : Bug fixed: CRCR replace with One, Substituted 11 with 1 → KILLED
7. handleDtdStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            return (_currToken = DTD);
421
        }
422
        
423 11 1. handleDtdStart : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleDtdStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDtdStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDtdStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDtdStart : Bug fixed: CRCR replace with One, Substituted 91 with 1 → KILLED
6. handleDtdStart : negated conditional → KILLED
7. handleDtdStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleDtdStart : changed conditional boundary to IF_ICMPGT → KILLED
9. handleDtdStart : changed conditional boundary to IF_ICMPGT → KILLED
10. handleDtdStart : changed conditional boundary to IF_ICMPLT → KILLED
11. handleDtdStart : changed conditional boundary to IF_ICMPNE → KILLED
        if (c != '[') { // If not end, must have int. subset
424 2 1. handleDtdStart : negated conditional → NO_COVERAGE
2. handleDtdStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_systemId mutated with null check on object → NO_COVERAGE
            String msg = (_systemId != null) ?
425
                " (expected '[' for the internal subset, or '>' to end DOCTYPE declaration)" :
426
                " (expected a 'PUBLIC' or 'SYSTEM' keyword, '[' for the internal subset, or '>' to end DOCTYPE declaration)";
427 1 1. handleDtdStart : removed call to com/fasterxml/aalto/in/ReaderScanner::reportTreeUnexpChar → NO_COVERAGE
            reportTreeUnexpChar(c, msg);
428
        }
429
430
        /* Need not parse the int. subset yet, can leave as is, and then
431
         * either skip or parse later on
432
         */
433 6 1. handleDtdStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
2. handleDtdStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDtdStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDtdStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDtdStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. handleDtdStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        _tokenIncomplete = true;
434 7 1. handleDtdStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED
2. handleDtdStart : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
3. handleDtdStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleDtdStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleDtdStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleDtdStart : Bug fixed: CRCR replace with One, Substituted 11 with 1 → KILLED
7. handleDtdStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        return (_currToken = DTD);
435
    }
436
437
    protected final int handleCommentOrCdataStart()
438
        throws XMLStreamException
439
    {
440 9 1. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleCommentOrCdataStart : changed conditional boundary → KILLED
5. handleCommentOrCdataStart : negated conditional → KILLED
6. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGE → KILLED
8. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGT → KILLED
        if (_inputPtr >= _inputEnd) {
441 1 1. handleCommentOrCdataStart : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → KILLED
            loadMoreGuaranteed();
442
        }
443 9 1. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleCommentOrCdataStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleCommentOrCdataStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleCommentOrCdataStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleCommentOrCdataStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleCommentOrCdataStart : Replaced operate with second operand → KILLED
9. handleCommentOrCdataStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        char c = _inputBuffer[_inputPtr++];
444
445
        // Let's first see if it's a comment (simpler)
446 11 1. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleCommentOrCdataStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleCommentOrCdataStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleCommentOrCdataStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleCommentOrCdataStart : Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED
7. handleCommentOrCdataStart : negated conditional → KILLED
8. handleCommentOrCdataStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPEQ → KILLED
10. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGE → KILLED
11. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPLT → KILLED
        if (c == '-') { // Comment
447 9 1. handleCommentOrCdataStart : changed conditional boundary → SURVIVED
2. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleCommentOrCdataStart : negated conditional → KILLED
6. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGE → KILLED
8. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGT → KILLED
            if (_inputPtr >= _inputEnd) {
448 1 1. handleCommentOrCdataStart : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                loadMoreGuaranteed();
449
            }
450 9 1. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleCommentOrCdataStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleCommentOrCdataStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleCommentOrCdataStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleCommentOrCdataStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleCommentOrCdataStart : Replaced operate with second operand → KILLED
9. handleCommentOrCdataStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            c = _inputBuffer[_inputPtr++];
451 11 1. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleCommentOrCdataStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCommentOrCdataStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCommentOrCdataStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCommentOrCdataStart : Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED
6. handleCommentOrCdataStart : negated conditional → KILLED
7. handleCommentOrCdataStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGT → KILLED
10. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPLT → KILLED
11. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPNE → KILLED
            if (c != '-') {
452 1 1. handleCommentOrCdataStart : removed call to com/fasterxml/aalto/in/ReaderScanner::reportTreeUnexpChar → NO_COVERAGE
                reportTreeUnexpChar(c, " (expected '-' for COMMENT)");
453
            }
454 7 1. handleCommentOrCdataStart : negated conditional → SURVIVED
2. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED
3. handleCommentOrCdataStart : changed conditional boundary to IFGE → SURVIVED
4. handleCommentOrCdataStart : changed conditional boundary to IFGT → SURVIVED
5. handleCommentOrCdataStart : changed conditional boundary to IFLE → SURVIVED
6. handleCommentOrCdataStart : changed conditional boundary to IFLT → SURVIVED
7. handleCommentOrCdataStart : changed conditional boundary to IFNE → SURVIVED
            if (_cfgLazyParsing) {
455 6 1. handleCommentOrCdataStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCommentOrCdataStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCommentOrCdataStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCommentOrCdataStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleCommentOrCdataStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → NO_COVERAGE
                _tokenIncomplete = true;
456
            } else {
457 1 1. handleCommentOrCdataStart : removed call to com/fasterxml/aalto/in/ReaderScanner::finishComment → KILLED
                finishComment();
458
            }
459 7 1. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED
2. handleCommentOrCdataStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCommentOrCdataStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCommentOrCdataStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCommentOrCdataStart : Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED
6. handleCommentOrCdataStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. handleCommentOrCdataStart : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
            return (_currToken = COMMENT);
460
        }
461
462
        // If not, should be CDATA:
463 11 1. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPLT → SURVIVED
4. handleCommentOrCdataStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleCommentOrCdataStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleCommentOrCdataStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleCommentOrCdataStart : Bug fixed: CRCR replace with One, Substituted 91 with 1 → KILLED
8. handleCommentOrCdataStart : negated conditional → KILLED
9. handleCommentOrCdataStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGE → KILLED
        if (c == '[') { // CDATA
464 6 1. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED
2. handleCommentOrCdataStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCommentOrCdataStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCommentOrCdataStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCommentOrCdataStart : Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED
6. handleCommentOrCdataStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            _currToken = CDATA;
465 22 1. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPEQ → SURVIVED
2. handleCommentOrCdataStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCommentOrCdataStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleCommentOrCdataStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleCommentOrCdataStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleCommentOrCdataStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleCommentOrCdataStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleCommentOrCdataStart : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
9. handleCommentOrCdataStart : Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED
10. handleCommentOrCdataStart : changed conditional boundary → KILLED
11. handleCommentOrCdataStart : Changed increment from 1 to -1 → KILLED
12. handleCommentOrCdataStart : negated conditional → KILLED
13. handleCommentOrCdataStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. handleCommentOrCdataStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGT → KILLED
16. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGT → KILLED
17. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPLT → KILLED
18. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPNE → KILLED
19. handleCommentOrCdataStart : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
20. handleCommentOrCdataStart : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
21. handleCommentOrCdataStart : UOI Mutator: Removed unary increment of local variable → KILLED
22. handleCommentOrCdataStart : UOI Mutator: Reversed increment of local variable → KILLED
            for (int i = 0; i < 6; ++i) {
466 9 1. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleCommentOrCdataStart : changed conditional boundary → KILLED
5. handleCommentOrCdataStart : negated conditional → KILLED
6. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGE → KILLED
8. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGT → KILLED
                if (_inputPtr >= _inputEnd) {
467 1 1. handleCommentOrCdataStart : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → KILLED
                    loadMoreGuaranteed();
468
                }
469 9 1. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleCommentOrCdataStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleCommentOrCdataStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleCommentOrCdataStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleCommentOrCdataStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleCommentOrCdataStart : Replaced operate with second operand → KILLED
9. handleCommentOrCdataStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                c = _inputBuffer[_inputPtr++];
470 6 1. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleCommentOrCdataStart : negated conditional → KILLED
3. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGT → KILLED
4. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPGT → KILLED
5. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPLT → KILLED
6. handleCommentOrCdataStart : changed conditional boundary to IF_ICMPNE → KILLED
                if (c != CDATA_STR.charAt(i)) {
471 1 1. handleCommentOrCdataStart : removed call to com/fasterxml/aalto/in/ReaderScanner::reportTreeUnexpChar → NO_COVERAGE
                    reportTreeUnexpChar(c, " (expected '"+CDATA_STR.charAt(i)+"' for CDATA section)");
472
                }
473
            }
474 7 1. handleCommentOrCdataStart : negated conditional → SURVIVED
2. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED
3. handleCommentOrCdataStart : changed conditional boundary to IFGE → SURVIVED
4. handleCommentOrCdataStart : changed conditional boundary to IFGT → SURVIVED
5. handleCommentOrCdataStart : changed conditional boundary to IFLE → SURVIVED
6. handleCommentOrCdataStart : changed conditional boundary to IFLT → SURVIVED
7. handleCommentOrCdataStart : changed conditional boundary to IFNE → SURVIVED
            if (_cfgLazyParsing) {
475 6 1. handleCommentOrCdataStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
2. handleCommentOrCdataStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCommentOrCdataStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCommentOrCdataStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCommentOrCdataStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. handleCommentOrCdataStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                _tokenIncomplete = true;
476
            } else {
477 1 1. handleCommentOrCdataStart : removed call to com/fasterxml/aalto/in/ReaderScanner::finishCData → NO_COVERAGE
                finishCData();
478
            }
479 6 1. handleCommentOrCdataStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleCommentOrCdataStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleCommentOrCdataStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleCommentOrCdataStart : Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED
5. handleCommentOrCdataStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleCommentOrCdataStart : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
            return CDATA;
480
        }
481 1 1. handleCommentOrCdataStart : removed call to com/fasterxml/aalto/in/ReaderScanner::reportTreeUnexpChar → NO_COVERAGE
        reportTreeUnexpChar(c, " (expected either '-' for COMMENT or '[CDATA[' for CDATA section)");
482 6 1. handleCommentOrCdataStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCommentOrCdataStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCommentOrCdataStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCommentOrCdataStart : Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE
5. handleCommentOrCdataStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleCommentOrCdataStart : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
        return TOKEN_EOI; // never gets here
483
    }
484
485
    protected final int handlePIStart()
486
        throws XMLStreamException
487
    {
488 6 1. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED
2. handlePIStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePIStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePIStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePIStart : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
6. handlePIStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        _currToken = PROCESSING_INSTRUCTION;
489
490
        // Ok, first, need a name
491 9 1. handlePIStart : changed conditional boundary → SURVIVED
2. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handlePIStart : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handlePIStart : negated conditional → KILLED
6. handlePIStart : changed conditional boundary to IF_ICMPEQ → KILLED
7. handlePIStart : changed conditional boundary to IF_ICMPGE → KILLED
8. handlePIStart : changed conditional boundary to IF_ICMPGT → KILLED
9. handlePIStart : changed conditional boundary to IF_ICMPGT → KILLED
        if (_inputPtr >= _inputEnd) {
492 1 1. handlePIStart : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
            loadMoreGuaranteed();
493
        }
494
        // Ok, first, need a name
495 9 1. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handlePIStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handlePIStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handlePIStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handlePIStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handlePIStart : Replaced operate with second operand → KILLED
9. handlePIStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        char c = _inputBuffer[_inputPtr++];
496 1 1. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenName mutated with null check on object → SURVIVED
        _tokenName = parsePName(c);
497
        { // but is it "xml" (case insensitive)?
498 1 1. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenName mutated with null check on object → SURVIVED
            String ln = _tokenName.getLocalName();
499 18 1. handlePIStart : negated conditional → SURVIVED
2. handlePIStart : negated conditional → SURVIVED
3. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenName mutated with null check on object → SURVIVED
4. handlePIStart : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handlePIStart : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handlePIStart : changed conditional boundary to IF_ICMPGT → SURVIVED
7. handlePIStart : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handlePIStart : changed conditional boundary to IF_ICMPLT → SURVIVED
9. handlePIStart : changed conditional boundary to IFGE → SURVIVED
10. handlePIStart : changed conditional boundary to IFGT → SURVIVED
11. handlePIStart : changed conditional boundary to IFLE → SURVIVED
12. handlePIStart : changed conditional boundary to IFLT → SURVIVED
13. handlePIStart : changed conditional boundary to IFNE → SURVIVED
14. handlePIStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
15. handlePIStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
16. handlePIStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
17. handlePIStart : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
18. handlePIStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            if (ln.length() == 3 && ln.equalsIgnoreCase("xml") &&
500 1 1. handlePIStart : negated conditional → NO_COVERAGE
                _tokenName.getPrefix() == null) {
501 1 1. handlePIStart : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE
                reportInputProblem(ErrorConsts.ERR_WF_PI_XML_TARGET);
502
            }
503
        }
504
505
        /* Let's then verify that we either get a space, or closing
506
         * '?>': this way we'll catch some problems right away, and also
507
         * simplify actual processing of contents.
508
         */
509 9 1. handlePIStart : changed conditional boundary → SURVIVED
2. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handlePIStart : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handlePIStart : negated conditional → KILLED
6. handlePIStart : changed conditional boundary to IF_ICMPEQ → KILLED
7. handlePIStart : changed conditional boundary to IF_ICMPGE → KILLED
8. handlePIStart : changed conditional boundary to IF_ICMPGT → KILLED
9. handlePIStart : changed conditional boundary to IF_ICMPGT → KILLED
        if (_inputPtr >= _inputEnd) {
510 1 1. handlePIStart : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
            loadMoreGuaranteed();
511
        }
512 9 1. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handlePIStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handlePIStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handlePIStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handlePIStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handlePIStart : Replaced operate with second operand → KILLED
9. handlePIStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        c = _inputBuffer[_inputPtr++];
513 11 1. handlePIStart : changed conditional boundary to IF_ICMPNE → SURVIVED
2. handlePIStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePIStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePIStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePIStart : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
6. handlePIStart : changed conditional boundary → KILLED
7. handlePIStart : negated conditional → KILLED
8. handlePIStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handlePIStart : changed conditional boundary to IF_ICMPEQ → KILLED
10. handlePIStart : changed conditional boundary to IF_ICMPGE → KILLED
11. handlePIStart : changed conditional boundary to IF_ICMPLT → KILLED
        if (c <= INT_SPACE) {
514
            // Ok, let's skip the white space...
515
            while (true) {
516 11 1. handlePIStart : negated conditional → SURVIVED
2. handlePIStart : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handlePIStart : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handlePIStart : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handlePIStart : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handlePIStart : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handlePIStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR
8. handlePIStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. handlePIStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. handlePIStart : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
11. handlePIStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                if (c == '\n') {
517 1 1. handlePIStart : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                    markLF();
518 11 1. handlePIStart : negated conditional → SURVIVED
2. handlePIStart : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handlePIStart : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handlePIStart : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handlePIStart : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handlePIStart : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handlePIStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handlePIStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handlePIStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handlePIStart : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
11. handlePIStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                } else if (c == '\r') {
519 9 1. handlePIStart : changed conditional boundary → NO_COVERAGE
2. handlePIStart : negated conditional → NO_COVERAGE
3. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handlePIStart : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handlePIStart : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handlePIStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handlePIStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handlePIStart : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (_inputPtr >= _inputEnd) {
520 1 1. handlePIStart : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                        loadMoreGuaranteed();
521
                    }
522 13 1. handlePIStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handlePIStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handlePIStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handlePIStart : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. handlePIStart : negated conditional → NO_COVERAGE
6. handlePIStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handlePIStart : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. handlePIStart : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. handlePIStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handlePIStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handlePIStart : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                    if (_inputBuffer[_inputPtr] == '\n') {
523 8 1. handlePIStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handlePIStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handlePIStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handlePIStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handlePIStart : Replaced operate with second operand → NO_COVERAGE
6. handlePIStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        ++_inputPtr;
524
                    }
525 1 1. handlePIStart : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                    markLF();
526 22 1. handlePIStart : negated conditional → SURVIVED
2. handlePIStart : changed conditional boundary to IF_ICMPGE → SURVIVED
3. handlePIStart : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handlePIStart : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handlePIStart : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handlePIStart : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handlePIStart : changed conditional boundary to IF_ICMPNE → SURVIVED
8. handlePIStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. handlePIStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
10. handlePIStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
11. handlePIStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
12. handlePIStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
13. handlePIStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
14. handlePIStart : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
15. handlePIStart : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
16. handlePIStart : negated conditional → KILLED
17. handlePIStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. handlePIStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
19. handlePIStart : changed conditional boundary to IF_ICMPGT → KILLED
20. handlePIStart : changed conditional boundary to IF_ICMPGT → KILLED
21. handlePIStart : changed conditional boundary to IF_ICMPLT → KILLED
22. handlePIStart : changed conditional boundary to IF_ICMPNE → KILLED
                } else if (c != ' ' && c != '\t') {
527 1 1. handlePIStart : removed call to com/fasterxml/aalto/in/ReaderScanner::throwInvalidSpace → NO_COVERAGE
                    throwInvalidSpace(c);
528
                }
529 9 1. handlePIStart : changed conditional boundary → SURVIVED
2. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handlePIStart : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handlePIStart : negated conditional → KILLED
6. handlePIStart : changed conditional boundary to IF_ICMPEQ → KILLED
7. handlePIStart : changed conditional boundary to IF_ICMPGE → KILLED
8. handlePIStart : changed conditional boundary to IF_ICMPGT → KILLED
9. handlePIStart : changed conditional boundary to IF_ICMPGT → KILLED
                if (_inputPtr >= _inputEnd) {
530 1 1. handlePIStart : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
531
                }
532 2 1. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                c = _inputBuffer[_inputPtr];
533 13 1. handlePIStart : changed conditional boundary to IF_ICMPEQ → SURVIVED
2. handlePIStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePIStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePIStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePIStart : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
6. handlePIStart : changed conditional boundary → KILLED
7. handlePIStart : negated conditional → KILLED
8. handlePIStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handlePIStart : changed conditional boundary to IF_ICMPGE → KILLED
10. handlePIStart : changed conditional boundary to IF_ICMPGT → KILLED
11. handlePIStart : changed conditional boundary to IF_ICMPGT → KILLED
12. handlePIStart : changed conditional boundary to IF_ICMPLT → KILLED
13. handlePIStart : changed conditional boundary to IF_ICMPNE → KILLED
                if (c > 0x0020) {
534
                    break;
535
                }
536 8 1. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePIStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handlePIStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handlePIStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handlePIStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handlePIStart : Replaced operate with second operand → KILLED
8. handlePIStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                ++_inputPtr;
537
            }
538
            // Ok, got non-space, need to push back:
539 7 1. handlePIStart : negated conditional → SURVIVED
2. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED
3. handlePIStart : changed conditional boundary to IFGE → SURVIVED
4. handlePIStart : changed conditional boundary to IFGT → SURVIVED
5. handlePIStart : changed conditional boundary to IFLE → SURVIVED
6. handlePIStart : changed conditional boundary to IFLT → SURVIVED
7. handlePIStart : changed conditional boundary to IFNE → SURVIVED
            if (_cfgLazyParsing) {
540 6 1. handlePIStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handlePIStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handlePIStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handlePIStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handlePIStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → NO_COVERAGE
                _tokenIncomplete = true;
541
            } else {
542 1 1. handlePIStart : removed call to com/fasterxml/aalto/in/ReaderScanner::finishPI → KILLED
                finishPI();
543
            }
544
        } else {
545 11 1. handlePIStart : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handlePIStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePIStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePIStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePIStart : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
6. handlePIStart : negated conditional → KILLED
7. handlePIStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handlePIStart : changed conditional boundary to IF_ICMPGT → KILLED
9. handlePIStart : changed conditional boundary to IF_ICMPGT → KILLED
10. handlePIStart : changed conditional boundary to IF_ICMPLT → KILLED
11. handlePIStart : changed conditional boundary to IF_ICMPNE → KILLED
            if (c != INT_QMARK) {
546 1 1. handlePIStart : removed call to com/fasterxml/aalto/in/ReaderScanner::reportMissingPISpace → NO_COVERAGE
                reportMissingPISpace(c);
547
            }
548 9 1. handlePIStart : changed conditional boundary → SURVIVED
2. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handlePIStart : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handlePIStart : negated conditional → KILLED
6. handlePIStart : changed conditional boundary to IF_ICMPEQ → KILLED
7. handlePIStart : changed conditional boundary to IF_ICMPGE → KILLED
8. handlePIStart : changed conditional boundary to IF_ICMPGT → KILLED
9. handlePIStart : changed conditional boundary to IF_ICMPGT → KILLED
            if (_inputPtr >= _inputEnd) {
549 1 1. handlePIStart : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                loadMoreGuaranteed();
550
            }
551 9 1. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handlePIStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handlePIStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handlePIStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handlePIStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handlePIStart : Replaced operate with second operand → KILLED
9. handlePIStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            c = _inputBuffer[_inputPtr++];
552 11 1. handlePIStart : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handlePIStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePIStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePIStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePIStart : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
6. handlePIStart : negated conditional → KILLED
7. handlePIStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handlePIStart : changed conditional boundary to IF_ICMPGT → KILLED
9. handlePIStart : changed conditional boundary to IF_ICMPGT → KILLED
10. handlePIStart : changed conditional boundary to IF_ICMPLT → KILLED
11. handlePIStart : changed conditional boundary to IF_ICMPNE → KILLED
            if (c != '>') {
553 1 1. handlePIStart : removed call to com/fasterxml/aalto/in/ReaderScanner::reportMissingPISpace → NO_COVERAGE
                reportMissingPISpace(c);
554
            }
555 1 1. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED
            _textBuilder.resetWithEmpty();
556 6 1. handlePIStart : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
2. handlePIStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePIStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePIStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePIStart : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handlePIStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            _tokenIncomplete = false;
557
        }
558
559 6 1. handlePIStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handlePIStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handlePIStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handlePIStart : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
5. handlePIStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handlePIStart : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
        return PROCESSING_INSTRUCTION;
560
    }
561
562
    /**
563
     * @return Code point for the entity that expands to a valid XML
564
     *    content character.
565
     */
566
    protected final int handleCharEntity()
567
        throws XMLStreamException
568
    {
569
        // Hex or decimal?
570 9 1. handleCharEntity : changed conditional boundary → NO_COVERAGE
2. handleCharEntity : negated conditional → NO_COVERAGE
3. handleCharEntity : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleCharEntity : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleCharEntity : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
        if (_inputPtr >= _inputEnd) {
571 1 1. handleCharEntity : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
            loadMoreGuaranteed();
572
        }
573 9 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleCharEntity : Replaced operate with second operand → NO_COVERAGE
6. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleCharEntity : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleCharEntity : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleCharEntity : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
        char c = _inputBuffer[_inputPtr++];
574 5 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
        int value = 0;
575 11 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 120 with 1 → NO_COVERAGE
5. handleCharEntity : negated conditional → NO_COVERAGE
6. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleCharEntity : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleCharEntity : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
        if (c == 'x') { // hex
576
            while (true) {
577 9 1. handleCharEntity : changed conditional boundary → NO_COVERAGE
2. handleCharEntity : negated conditional → NO_COVERAGE
3. handleCharEntity : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleCharEntity : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleCharEntity : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (_inputPtr >= _inputEnd) {
578 1 1. handleCharEntity : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
579
                }
580 9 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleCharEntity : Replaced operate with second operand → NO_COVERAGE
6. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleCharEntity : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleCharEntity : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleCharEntity : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                c = _inputBuffer[_inputPtr++];
581 11 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE
5. handleCharEntity : negated conditional → NO_COVERAGE
6. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleCharEntity : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleCharEntity : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                if (c == ';') {
582
                    break;
583
                }
584 6 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 4 with 1 → NO_COVERAGE
5. handleCharEntity : Replaced Shift Left with Shift Right → NO_COVERAGE
6. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                value = value << 4;
585 23 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 57 with 1 → NO_COVERAGE
8. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 48 with 1 → NO_COVERAGE
9. handleCharEntity : changed conditional boundary → NO_COVERAGE
10. handleCharEntity : changed conditional boundary → NO_COVERAGE
11. handleCharEntity : negated conditional → NO_COVERAGE
12. handleCharEntity : negated conditional → NO_COVERAGE
13. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
15. handleCharEntity : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
16. handleCharEntity : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
17. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
18. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
19. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
20. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
21. handleCharEntity : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
22. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
23. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (c <= '9' && c >= '0') {
586 7 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 48 with 1 → NO_COVERAGE
5. handleCharEntity : Replaced operate with second operand → NO_COVERAGE
6. handleCharEntity : Replaced operate with second operand → NO_COVERAGE
7. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    value += (c - '0');
587 23 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 97 with 1 → NO_COVERAGE
8. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 102 with 1 → NO_COVERAGE
9. handleCharEntity : changed conditional boundary → NO_COVERAGE
10. handleCharEntity : changed conditional boundary → NO_COVERAGE
11. handleCharEntity : negated conditional → NO_COVERAGE
12. handleCharEntity : negated conditional → NO_COVERAGE
13. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
15. handleCharEntity : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
16. handleCharEntity : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
17. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
18. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
19. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
20. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
21. handleCharEntity : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
22. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
23. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                } else if (c >= 'a' && c <= 'f') {
588 13 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
8. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 97 with 1 → NO_COVERAGE
9. handleCharEntity : Replaced operate with second operand → NO_COVERAGE
10. handleCharEntity : Replaced operate with second operand → NO_COVERAGE
11. handleCharEntity : Replaced operate with second operand → NO_COVERAGE
12. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    value += 10 + (c - 'a');
589 23 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 65 with 1 → NO_COVERAGE
8. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 70 with 1 → NO_COVERAGE
9. handleCharEntity : changed conditional boundary → NO_COVERAGE
10. handleCharEntity : changed conditional boundary → NO_COVERAGE
11. handleCharEntity : negated conditional → NO_COVERAGE
12. handleCharEntity : negated conditional → NO_COVERAGE
13. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
15. handleCharEntity : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
16. handleCharEntity : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
17. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
18. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
19. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
20. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
21. handleCharEntity : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
22. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
23. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                } else if (c >= 'A' && c <= 'F') {
590 13 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
8. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 65 with 1 → NO_COVERAGE
9. handleCharEntity : Replaced operate with second operand → NO_COVERAGE
10. handleCharEntity : Replaced operate with second operand → NO_COVERAGE
11. handleCharEntity : Replaced operate with second operand → NO_COVERAGE
12. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    value += 10 + (c - 'A');
591
                } else {
592 1 1. handleCharEntity : removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE
                    throwUnexpectedChar(c, "; expected a hex digit (0-9a-fA-F)");
593
                }
594 13 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → NO_COVERAGE
5. handleCharEntity : changed conditional boundary → NO_COVERAGE
6. handleCharEntity : negated conditional → NO_COVERAGE
7. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. handleCharEntity : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleCharEntity : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
13. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (value > MAX_UNICODE_CHAR) { // Overflow?
595 1 1. handleCharEntity : removed call to com/fasterxml/aalto/in/ReaderScanner::reportEntityOverflow → NO_COVERAGE
                    reportEntityOverflow();
596
                }
597
            }
598
        } else { // numeric (decimal)
599 11 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE
5. handleCharEntity : negated conditional → NO_COVERAGE
6. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
8. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleCharEntity : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            while (c != ';') {
600 23 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 57 with 1 → NO_COVERAGE
8. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 48 with 1 → NO_COVERAGE
9. handleCharEntity : changed conditional boundary → NO_COVERAGE
10. handleCharEntity : changed conditional boundary → NO_COVERAGE
11. handleCharEntity : negated conditional → NO_COVERAGE
12. handleCharEntity : negated conditional → NO_COVERAGE
13. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
15. handleCharEntity : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
16. handleCharEntity : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
17. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
18. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
19. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
20. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
21. handleCharEntity : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
22. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
23. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (c <= '9' && c >= '0') {
601 13 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
8. handleCharEntity : Replaced operate with second operand → NO_COVERAGE
9. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 48 with 1 → NO_COVERAGE
10. handleCharEntity : Replaced operate with second operand → NO_COVERAGE
11. handleCharEntity : Replaced operate with second operand → NO_COVERAGE
12. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    value = (value * 10) + (c - '0');
602 13 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → NO_COVERAGE
5. handleCharEntity : changed conditional boundary → NO_COVERAGE
6. handleCharEntity : negated conditional → NO_COVERAGE
7. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. handleCharEntity : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleCharEntity : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
13. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (value > MAX_UNICODE_CHAR) { // Overflow?
603 1 1. handleCharEntity : removed call to com/fasterxml/aalto/in/ReaderScanner::reportEntityOverflow → NO_COVERAGE
                        reportEntityOverflow();
604
                    }
605
                } else {
606 1 1. handleCharEntity : removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE
                    throwUnexpectedChar(c, "; expected a decimal number");
607
                }
608 9 1. handleCharEntity : changed conditional boundary → NO_COVERAGE
2. handleCharEntity : negated conditional → NO_COVERAGE
3. handleCharEntity : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleCharEntity : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleCharEntity : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (_inputPtr >= _inputEnd) {
609 1 1. handleCharEntity : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
610
                }
611 9 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleCharEntity : Replaced operate with second operand → NO_COVERAGE
6. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleCharEntity : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleCharEntity : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleCharEntity : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                c = _inputBuffer[_inputPtr++];
612
            }
613
        }
614
615
        // Ok, and then need to check result is a valid XML content char:
616 12 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. handleCharEntity : changed conditional boundary → NO_COVERAGE
6. handleCharEntity : negated conditional → NO_COVERAGE
7. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. handleCharEntity : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
        if (value >= 0xD800) { // note: checked for overflow earlier
617 12 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE
5. handleCharEntity : changed conditional boundary → NO_COVERAGE
6. handleCharEntity : negated conditional → NO_COVERAGE
7. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. handleCharEntity : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleCharEntity : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
12. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (value < 0xE000) { // no surrogates via entity expansion
618 1 1. handleCharEntity : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidXmlChar → NO_COVERAGE
                reportInvalidXmlChar(value);
619
            }
620 22 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE
8. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 65535 with 1 → NO_COVERAGE
9. handleCharEntity : negated conditional → NO_COVERAGE
10. handleCharEntity : negated conditional → NO_COVERAGE
11. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleCharEntity : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
14. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
15. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
16. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
19. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
20. handleCharEntity : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
21. handleCharEntity : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
22. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (value == 0xFFFE || value == 0xFFFF) {
621 1 1. handleCharEntity : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidXmlChar → NO_COVERAGE
                reportInvalidXmlChar(value);
622
            }
623 12 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
5. handleCharEntity : changed conditional boundary → NO_COVERAGE
6. handleCharEntity : negated conditional → NO_COVERAGE
7. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. handleCharEntity : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleCharEntity : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
12. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
        } else if (value < 32) {
624
            // XML 1.1 allows most other chars; 1.0 does not:
625 33 1. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleCharEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. handleCharEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
8. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
9. handleCharEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
11. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE
12. handleCharEntity : Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE
13. handleCharEntity : negated conditional → NO_COVERAGE
14. handleCharEntity : negated conditional → NO_COVERAGE
15. handleCharEntity : negated conditional → NO_COVERAGE
16. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
17. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
18. handleCharEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
19. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
20. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
21. handleCharEntity : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
22. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
23. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
24. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
25. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
26. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
27. handleCharEntity : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
28. handleCharEntity : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
29. handleCharEntity : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
30. handleCharEntity : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
31. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
32. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
33. handleCharEntity : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (value != INT_LF && value != INT_CR && value != INT_TAB) {
626 13 1. handleCharEntity : negated conditional → NO_COVERAGE
2. handleCharEntity : negated conditional → NO_COVERAGE
3. handleCharEntity : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_xml11 mutated with null check on object → NO_COVERAGE
4. handleCharEntity : changed conditional boundary to IFEQ → NO_COVERAGE
5. handleCharEntity : changed conditional boundary to IFGE → NO_COVERAGE
6. handleCharEntity : changed conditional boundary to IFGE → NO_COVERAGE
7. handleCharEntity : changed conditional boundary to IFGT → NO_COVERAGE
8. handleCharEntity : changed conditional boundary to IFGT → NO_COVERAGE
9. handleCharEntity : changed conditional boundary to IFLE → NO_COVERAGE
10. handleCharEntity : changed conditional boundary to IFLE → NO_COVERAGE
11. handleCharEntity : changed conditional boundary to IFLT → NO_COVERAGE
12. handleCharEntity : changed conditional boundary to IFLT → NO_COVERAGE
13. handleCharEntity : changed conditional boundary to IFNE → NO_COVERAGE
                if (!_xml11 || value == 0) {
627 1 1. handleCharEntity : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidXmlChar → NO_COVERAGE
                    reportInvalidXmlChar(value);
628
                }
629
            }
630
        }
631 1 1. handleCharEntity : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
        return value;
632
    }
633
634
    protected final int handleStartElement(char c)
635
        throws XMLStreamException
636
    {
637 6 1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        _currToken = START_ELEMENT;
638 6 1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currNsCount mutated with null check on object → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        _currNsCount = 0;
639
        PName elemName = parsePName(c);
640
641
        /* Ok. Need to create a qualified name. Simplest for element
642
         * in default ns (no extra work -- expressed as null binding);
643
         * otherwise need to find binding
644
         */
645
        String prefix = elemName.getPrefix();
646
        boolean allBound; // flag to check 'late' bindings
647
648 1 1. handleStartElement : negated conditional → KILLED
        if (prefix == null) { // element in default ns
649 5 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            allBound = true; // which need not be bound
650
        } else {
651
            elemName = bindName(elemName, prefix);
652
            allBound = elemName.isBound();
653
        }
654
655 1 1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenName mutated with null check on object → SURVIVED
        _tokenName = elemName;
656 2 1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currElem mutated with null check on object → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currElem mutated with null check on object → SURVIVED
        _currElem = new ElementScope(elemName, _currElem);
657
658
        // And then attribute parsing loop:
659 5 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        int attrPtr = 0;
660
661
        while (true) {
662 9 1. handleStartElement : changed conditional boundary → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handleStartElement : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleStartElement : negated conditional → KILLED
6. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
8. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
            if (_inputPtr >= _inputEnd) {
663 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                loadMoreGuaranteed();
664
            }
665 9 1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleStartElement : Replaced operate with second operand → KILLED
9. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            c = _inputBuffer[_inputPtr++];
666
            // Intervening space to skip?
667 11 1. handleStartElement : changed conditional boundary to IF_ICMPNE → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
6. handleStartElement : changed conditional boundary → KILLED
7. handleStartElement : negated conditional → KILLED
8. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
            if (c <= INT_SPACE) {
668
                do {
669 11 1. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR
5. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
8. handleStartElement : negated conditional → KILLED
9. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
                    if (c == INT_LF) {
670 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                        markLF();
671 11 1. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
8. handleStartElement : negated conditional → KILLED
9. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
                    } else if (c == INT_CR) {
672 9 1. handleStartElement : changed conditional boundary → NO_COVERAGE
2. handleStartElement : negated conditional → NO_COVERAGE
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleStartElement : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleStartElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleStartElement : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (_inputPtr >= _inputEnd) {
673 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
674
                        }
675 13 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. handleStartElement : negated conditional → NO_COVERAGE
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleStartElement : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. handleStartElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleStartElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                        if (_inputBuffer[_inputPtr] == '\n') {
676 8 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleStartElement : Replaced operate with second operand → NO_COVERAGE
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ++_inputPtr;
677
                        }
678 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                        markLF();
679 22 1. handleStartElement : negated conditional → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleStartElement : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleStartElement : changed conditional boundary to IF_ICMPNE → SURVIVED
8. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
10. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
11. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
12. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
13. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
14. handleStartElement : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
15. handleStartElement : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
16. handleStartElement : negated conditional → KILLED
17. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
19. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
20. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
21. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
22. handleStartElement : changed conditional boundary to IF_ICMPNE → KILLED
                    } else if (c != ' ' && c != '\t') {
680 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::throwInvalidSpace → NO_COVERAGE
                        throwInvalidSpace(c);
681
                    }
682 9 1. handleStartElement : changed conditional boundary → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handleStartElement : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleStartElement : negated conditional → KILLED
6. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
8. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
                    if (_inputPtr >= _inputEnd) {
683 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                        loadMoreGuaranteed();
684
                    }
685 9 1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleStartElement : Replaced operate with second operand → KILLED
9. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                    c = _inputBuffer[_inputPtr++];
686 13 1. handleStartElement : changed conditional boundary → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPLT → SURVIVED
4. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
8. handleStartElement : negated conditional → KILLED
9. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
12. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
13. handleStartElement : changed conditional boundary to IF_ICMPNE → KILLED
                } while (c <= INT_SPACE);
687 22 1. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
3. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handleStartElement : Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED
10. handleStartElement : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
11. handleStartElement : negated conditional → KILLED
12. handleStartElement : negated conditional → KILLED
13. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
16. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
17. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
18. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
19. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
20. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
21. handleStartElement : changed conditional boundary to IF_ICMPNE → KILLED
22. handleStartElement : changed conditional boundary to IF_ICMPNE → KILLED
            } else if (c != INT_SLASH && c != INT_GT) {
688 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE
                throwUnexpectedChar(c, " expected space, or '>' or \"/>\"");
689
            }
690
691
            // Ok; either need to get an attribute name, or end marker:
692 11 1. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED
7. handleStartElement : negated conditional → KILLED
8. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
            if (c == INT_SLASH) {
693 9 1. handleStartElement : changed conditional boundary → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handleStartElement : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleStartElement : negated conditional → KILLED
6. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
8. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
                if (_inputPtr >= _inputEnd) {
694 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
695
                }
696 9 1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleStartElement : Replaced operate with second operand → KILLED
9. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                c = _inputBuffer[_inputPtr++];
697 11 1. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
6. handleStartElement : negated conditional → KILLED
7. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPNE → KILLED
                if (c != '>') {
698 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE
                    throwUnexpectedChar(c, " expected '>'");
699
                }
700 6 1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_isEmptyTag mutated with null check on object → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                _isEmptyTag = true;
701
                break;
702 11 1. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
7. handleStartElement : negated conditional → KILLED
8. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
            } else if (c == '>') {
703 6 1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_isEmptyTag mutated with null check on object → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                _isEmptyTag = false;
704
                break;
705 11 1. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED
8. handleStartElement : negated conditional → KILLED
9. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
            } else if (c == '<') {
706 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE
                reportInputProblem("Unexpected '<' character in element (missing closing '>'?)");
707
            }
708
709
            // Ok, an attr name:
710
            PName attrName = parsePName(c);
711
            prefix = attrName.getPrefix();
712
713
            boolean isNsDecl;
714
715 1 1. handleStartElement : negated conditional → KILLED
            if (prefix == null) { // can be default ns decl:
716 12 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleStartElement : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
9. handleStartElement : negated conditional → KILLED
10. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. handleStartElement : changed conditional of IF_ACMP → KILLED
                isNsDecl = (attrName.getLocalName() == "xmlns");
717
            } else {
718
                // May be a namespace decl though?
719 2 1. handleStartElement : negated conditional → KILLED
2. handleStartElement : changed conditional of IF_ACMP → KILLED
                if (prefix == "xmlns") {
720 5 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                    isNsDecl = true;
721
                } else {
722
                    attrName = bindName(attrName, prefix);
723 6 1. handleStartElement : negated conditional → NO_COVERAGE
2. handleStartElement : changed conditional boundary to IFGE → NO_COVERAGE
3. handleStartElement : changed conditional boundary to IFGT → NO_COVERAGE
4. handleStartElement : changed conditional boundary to IFLE → NO_COVERAGE
5. handleStartElement : changed conditional boundary to IFLT → NO_COVERAGE
6. handleStartElement : changed conditional boundary to IFNE → NO_COVERAGE
                    if (allBound) {
724
                        allBound = attrName.isBound();
725
                    }
726 5 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    isNsDecl = false;
727
                }
728
            }
729
730
            // Optional space to skip again
731
            while (true) {
732 9 1. handleStartElement : changed conditional boundary → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handleStartElement : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleStartElement : negated conditional → KILLED
6. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
8. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
                if (_inputPtr >= _inputEnd) {
733 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
734
                }
735 9 1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleStartElement : Replaced operate with second operand → KILLED
9. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                c = _inputBuffer[_inputPtr++];
736 13 1. handleStartElement : changed conditional boundary → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPLT → SURVIVED
4. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
8. handleStartElement : negated conditional → KILLED
9. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
12. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
13. handleStartElement : changed conditional boundary to IF_ICMPNE → KILLED
                if (c > INT_SPACE) {
737
                    break;
738
                }
739 11 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. handleStartElement : negated conditional → NO_COVERAGE
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleStartElement : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleStartElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleStartElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                if (c == '\n') {
740 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                    markLF();
741 11 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE
5. handleStartElement : negated conditional → NO_COVERAGE
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleStartElement : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleStartElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleStartElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                } else if (c == '\r') {
742 9 1. handleStartElement : changed conditional boundary → NO_COVERAGE
2. handleStartElement : negated conditional → NO_COVERAGE
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleStartElement : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleStartElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleStartElement : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (_inputPtr >= _inputEnd) {
743 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                        loadMoreGuaranteed();
744
                    }
745 13 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. handleStartElement : negated conditional → NO_COVERAGE
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleStartElement : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. handleStartElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleStartElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                    if (_inputBuffer[_inputPtr] == '\n') {
746 8 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleStartElement : Replaced operate with second operand → NO_COVERAGE
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        ++_inputPtr;
747
                    }
748 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                    markLF();
749 22 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
8. handleStartElement : Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE
9. handleStartElement : negated conditional → NO_COVERAGE
10. handleStartElement : negated conditional → NO_COVERAGE
11. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleStartElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
14. handleStartElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
15. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
16. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
19. handleStartElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
20. handleStartElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
21. handleStartElement : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
22. handleStartElement : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                } else if (c != ' ' && c != '\t') {
750 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::throwInvalidSpace → NO_COVERAGE
                    throwInvalidSpace(c);
751
                }
752
            }
753
754 11 1. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 61 with 1 → KILLED
6. handleStartElement : negated conditional → KILLED
7. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPNE → KILLED
            if (c != '=') {
755 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE
                throwUnexpectedChar(c, " expected '='");
756
            }
757
758
            // Optional space to skip again
759
            while (true) {
760 9 1. handleStartElement : changed conditional boundary → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handleStartElement : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleStartElement : negated conditional → KILLED
6. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
8. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
                if (_inputPtr >= _inputEnd) {
761 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
762
                }
763 9 1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleStartElement : Replaced operate with second operand → KILLED
9. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                c = _inputBuffer[_inputPtr++];
764 13 1. handleStartElement : changed conditional boundary → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPLT → SURVIVED
4. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
8. handleStartElement : negated conditional → KILLED
9. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
12. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
13. handleStartElement : changed conditional boundary to IF_ICMPNE → KILLED
                if (c > INT_SPACE) {
765
                    break;
766
                }
767 11 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. handleStartElement : negated conditional → NO_COVERAGE
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleStartElement : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleStartElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleStartElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                if (c == '\n') {
768 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                    markLF();
769 11 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE
5. handleStartElement : negated conditional → NO_COVERAGE
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleStartElement : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleStartElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleStartElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                } else if (c == '\r') {
770 9 1. handleStartElement : changed conditional boundary → NO_COVERAGE
2. handleStartElement : negated conditional → NO_COVERAGE
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleStartElement : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleStartElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleStartElement : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (_inputPtr >= _inputEnd) {
771 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                        loadMoreGuaranteed();
772
                    }
773 13 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. handleStartElement : negated conditional → NO_COVERAGE
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleStartElement : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. handleStartElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleStartElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                    if (_inputBuffer[_inputPtr] == '\n') {
774 8 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleStartElement : Replaced operate with second operand → NO_COVERAGE
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        ++_inputPtr;
775
                    }
776 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                    markLF();
777 22 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
8. handleStartElement : Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE
9. handleStartElement : negated conditional → NO_COVERAGE
10. handleStartElement : negated conditional → NO_COVERAGE
11. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleStartElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
14. handleStartElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
15. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
16. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
19. handleStartElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
20. handleStartElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
21. handleStartElement : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
22. handleStartElement : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                } else if (c != ' ' && c != '\t') {
778 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::throwInvalidSpace → NO_COVERAGE
                    throwInvalidSpace(c);
779
                }
780
            }
781
782 22 1. handleStartElement : negated conditional → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleStartElement : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleStartElement : changed conditional boundary to IF_ICMPNE → SURVIVED
8. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
10. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
11. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
12. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
13. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
14. handleStartElement : Bug fixed: CRCR replace with One, Substituted 34 with 1 → KILLED
15. handleStartElement : Bug fixed: CRCR replace with One, Substituted 39 with 1 → KILLED
16. handleStartElement : negated conditional → KILLED
17. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
19. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
20. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
21. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
22. handleStartElement : changed conditional boundary to IF_ICMPNE → KILLED
            if (c != '"' && c != '\'') {
783 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE
                throwUnexpectedChar(c, " Expected a quote");
784
            }
785
786
            /* Ok, finally: value parsing. However, ns URIs are to be handled
787
             * different from attribute values... let's offline URIs, since
788
             * they should be less common than attribute values.
789
             */
790 6 1. handleStartElement : changed conditional boundary to IFLE → SURVIVED
2. handleStartElement : changed conditional boundary to IFLT → SURVIVED
3. handleStartElement : negated conditional → KILLED
4. handleStartElement : changed conditional boundary to IFGE → KILLED
5. handleStartElement : changed conditional boundary to IFGT → KILLED
6. handleStartElement : changed conditional boundary to IFNE → KILLED
            if (isNsDecl) { // default ns, or explicit?
791 1 1. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::handleNsDeclaration → KILLED
                handleNsDeclaration(attrName, c);
792 8 1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currNsCount mutated with null check on object → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currNsCount mutated with null check on object → SURVIVED
3. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handleStartElement : Replaced operate with second operand → KILLED
8. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                ++_currNsCount;
793
            } else { // nope, a 'real' attribute:
794
                attrPtr = collectValue(attrPtr, c, attrName);
795
            }
796
        }
797
        {
798
            // Note: this call also checks attribute uniqueness
799 1 1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCollector mutated with null check on object → SURVIVED
            int act = _attrCollector.finishLastValue(attrPtr);
800 7 1. handleStartElement : changed conditional boundary to IFEQ → SURVIVED
2. handleStartElement : changed conditional boundary to IFLE → SURVIVED
3. handleStartElement : changed conditional boundary → KILLED
4. handleStartElement : negated conditional → KILLED
5. handleStartElement : changed conditional boundary to IFGT → KILLED
6. handleStartElement : changed conditional boundary to IFLT → KILLED
7. handleStartElement : changed conditional boundary to IFNE → KILLED
            if (act < 0) { // error, dup attr indicated by -1
801 1 1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
                act = _attrCollector.getCount(); // let's get correct count
802 2 1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
2. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE
                reportInputProblem(_attrCollector.getErrorMsg());
803
            }
804 1 1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCount mutated with null check on object → SURVIVED
            _attrCount = act;
805
        }
806 8 1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_depth mutated with null check on object → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_depth mutated with null check on object → SURVIVED
3. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handleStartElement : Replaced operate with second operand → KILLED
8. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        ++_depth;
807
808
        /* Was there any prefix that wasn't bound prior to use?
809
         * That's legal, assuming declaration was found later on...
810
         * let's check
811
         */
812 6 1. handleStartElement : negated conditional → SURVIVED
2. handleStartElement : changed conditional boundary to IFEQ → SURVIVED
3. handleStartElement : changed conditional boundary to IFGE → SURVIVED
4. handleStartElement : changed conditional boundary to IFGT → SURVIVED
5. handleStartElement : changed conditional boundary to IFLE → SURVIVED
6. handleStartElement : changed conditional boundary to IFLT → SURVIVED
        if (!allBound) {
813 6 1. handleStartElement : negated conditional → NO_COVERAGE
2. handleStartElement : changed conditional boundary to IFEQ → NO_COVERAGE
3. handleStartElement : changed conditional boundary to IFGE → NO_COVERAGE
4. handleStartElement : changed conditional boundary to IFGT → NO_COVERAGE
5. handleStartElement : changed conditional boundary to IFLE → NO_COVERAGE
6. handleStartElement : changed conditional boundary to IFLT → NO_COVERAGE
            if (!elemName.isBound()) { // element itself unbound
814 7 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenName mutated with null check on object → NO_COVERAGE
7. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::reportUnboundPrefix → NO_COVERAGE
                reportUnboundPrefix(_tokenName, false);
815
            }
816 18 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleStartElement : changed conditional boundary → NO_COVERAGE
6. handleStartElement : Changed increment from 1 to -1 → NO_COVERAGE
7. handleStartElement : negated conditional → NO_COVERAGE
8. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCount mutated with null check on object → NO_COVERAGE
10. handleStartElement : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
11. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleStartElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
14. handleStartElement : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
15. handleStartElement : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
16. handleStartElement : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
17. handleStartElement : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
18. handleStartElement : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
            for (int i = 0, len = _attrCount; i < len; ++i) {
817 1 1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
                PName attrName = _attrCollector.getName(i);
818 6 1. handleStartElement : negated conditional → NO_COVERAGE
2. handleStartElement : changed conditional boundary to IFEQ → NO_COVERAGE
3. handleStartElement : changed conditional boundary to IFGE → NO_COVERAGE
4. handleStartElement : changed conditional boundary to IFGT → NO_COVERAGE
5. handleStartElement : changed conditional boundary to IFLE → NO_COVERAGE
6. handleStartElement : changed conditional boundary to IFLT → NO_COVERAGE
                if (!attrName.isBound()) {
819 6 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleStartElement : removed call to com/fasterxml/aalto/in/ReaderScanner::reportUnboundPrefix → NO_COVERAGE
                    reportUnboundPrefix(attrName, true);
820
                }
821
            }
822
        }
823
824 6 1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleStartElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
        return START_ELEMENT;
825
    }
826
827
    /**
828
     * This method implements the tight loop for parsing attribute
829
     * values. It's off-lined from the main start element method to
830
     * simplify main method, which makes code more maintainable
831
     * and possibly easier for JIT/HotSpot to optimize.
832
     */
833
    private final int collectValue(int attrPtr, char quoteChar, PName attrName)
834
        throws XMLStreamException
835
    {
836 1 1. collectValue : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
        char[] attrBuffer = _attrCollector.startNewValue(attrName, attrPtr);
837 1 1. collectValue : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldATTR_CHARS mutated with null check on object → NO_COVERAGE
        final int[] TYPES = sCharTypes.ATTR_CHARS;
838
        
839
        value_loop:
840
        while (true) {
841
            char c;
842
843
            ascii_loop:
844
            while (true) {
845 1 1. collectValue : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                int ptr = _inputPtr;
846 8 1. collectValue : changed conditional boundary → NO_COVERAGE
2. collectValue : negated conditional → NO_COVERAGE
3. collectValue : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. collectValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
5. collectValue : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
6. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. collectValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (ptr >= _inputEnd) {
847 1 1. collectValue : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
848 1 1. collectValue : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                    ptr = _inputPtr;
849
                }
850 7 1. collectValue : changed conditional boundary → NO_COVERAGE
2. collectValue : negated conditional → NO_COVERAGE
3. collectValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. collectValue : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. collectValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (attrPtr >= attrBuffer.length) {
851 1 1. collectValue : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
                    attrBuffer = _attrCollector.valueBufferFull();
852
                }
853 1 1. collectValue : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
                int max = _inputEnd;
854
                {
855 2 1. collectValue : Replaced operate with second operand → NO_COVERAGE
2. collectValue : Replaced operate with second operand → NO_COVERAGE
                    int max2 = ptr + (attrBuffer.length - attrPtr);
856 7 1. collectValue : changed conditional boundary → NO_COVERAGE
2. collectValue : negated conditional → NO_COVERAGE
3. collectValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
5. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. collectValue : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
7. collectValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (max2 < max) {
857
                        max = max2;
858
                    }
859
                }
860 7 1. collectValue : changed conditional boundary → NO_COVERAGE
2. collectValue : negated conditional → NO_COVERAGE
3. collectValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
5. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. collectValue : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
7. collectValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                while (ptr < max) {
861 6 1. collectValue : Changed increment from 1 to -1 → NO_COVERAGE
2. collectValue : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
3. collectValue : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
4. collectValue : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
5. collectValue : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
6. collectValue : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    c = _inputBuffer[ptr++];
862 11 1. collectValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. collectValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. collectValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. collectValue : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. collectValue : changed conditional boundary → NO_COVERAGE
6. collectValue : negated conditional → NO_COVERAGE
7. collectValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. collectValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. collectValue : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. collectValue : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. collectValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (c <= 0xFF) {
863 6 1. collectValue : negated conditional → NO_COVERAGE
2. collectValue : changed conditional boundary to IFGE → NO_COVERAGE
3. collectValue : changed conditional boundary to IFGT → NO_COVERAGE
4. collectValue : changed conditional boundary to IFLE → NO_COVERAGE
5. collectValue : changed conditional boundary to IFLT → NO_COVERAGE
6. collectValue : changed conditional boundary to IFNE → NO_COVERAGE
                        if (TYPES[c] != 0) {
864 1 1. collectValue : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            _inputPtr = ptr;
865
                            break ascii_loop;
866
                        }
867 12 1. collectValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. collectValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. collectValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. collectValue : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. collectValue : changed conditional boundary → NO_COVERAGE
6. collectValue : negated conditional → NO_COVERAGE
7. collectValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. collectValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. collectValue : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. collectValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    } else if (c >= 0xD800) { // surrogates and 0xFFFE/0xFFFF
868 1 1. collectValue : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        _inputPtr = ptr;
869
                        break ascii_loop;
870
                    }
871 5 1. collectValue : Changed increment from 1 to -1 → NO_COVERAGE
2. collectValue : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. collectValue : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. collectValue : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. collectValue : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    attrBuffer[attrPtr++] = c;
872
                }
873 1 1. collectValue : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                _inputPtr = ptr;
874
            }
875
            
876 11 1. collectValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. collectValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. collectValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. collectValue : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. collectValue : changed conditional boundary → NO_COVERAGE
6. collectValue : negated conditional → NO_COVERAGE
7. collectValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. collectValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. collectValue : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. collectValue : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. collectValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (c <= 0xFF) {
877
                switch (TYPES[c]) {
878
                case XmlCharTypes.CT_INVALID:
879
                    c = handleInvalidXmlChar(c);
880
                case XmlCharTypes.CT_WS_CR:
881 9 1. collectValue : changed conditional boundary → NO_COVERAGE
2. collectValue : negated conditional → NO_COVERAGE
3. collectValue : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. collectValue : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. collectValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. collectValue : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. collectValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (_inputPtr >= _inputEnd) {
882 1 1. collectValue : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                        loadMoreGuaranteed();
883
                    }
884 13 1. collectValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. collectValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. collectValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. collectValue : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. collectValue : negated conditional → NO_COVERAGE
6. collectValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. collectValue : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. collectValue : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. collectValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. collectValue : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. collectValue : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                    if (_inputBuffer[_inputPtr] == '\n') {
885 8 1. collectValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. collectValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. collectValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. collectValue : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. collectValue : Replaced operate with second operand → NO_COVERAGE
6. collectValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. collectValue : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. collectValue : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        ++_inputPtr;
886
                    }
887
                    // fall through
888
                case XmlCharTypes.CT_WS_LF:
889 1 1. collectValue : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                    markLF();
890
                    // fall through
891
                case XmlCharTypes.CT_WS_TAB:
892
                    // Plus, need to convert these all to simple space
893 5 1. collectValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. collectValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. collectValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. collectValue : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
5. collectValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    c = ' ';
894
                    break;
895
                case XmlCharTypes.CT_LT:
896 1 1. collectValue : removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE
                    throwUnexpectedChar(c, "'<' not allowed in attribute value");
897
                case XmlCharTypes.CT_AMP:
898
                    {
899 5 1. collectValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. collectValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. collectValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. collectValue : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. collectValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                        int d = handleEntityInText(false);
900 6 1. collectValue : negated conditional → NO_COVERAGE
2. collectValue : changed conditional boundary to IFEQ → NO_COVERAGE
3. collectValue : changed conditional boundary to IFGE → NO_COVERAGE
4. collectValue : changed conditional boundary to IFGT → NO_COVERAGE
5. collectValue : changed conditional boundary to IFLE → NO_COVERAGE
6. collectValue : changed conditional boundary to IFLT → NO_COVERAGE
                        if (d == 0) { // unexpanded general entity... not good
901 6 1. collectValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. collectValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. collectValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. collectValue : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. collectValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. collectValue : removed call to com/fasterxml/aalto/in/ReaderScanner::reportUnexpandedEntityInAttr → NO_COVERAGE
                            reportUnexpandedEntityInAttr(attrName, false);
902
                        }
903
                        // Ok; does it need a surrogate though? (over 16 bits)
904 12 1. collectValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. collectValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. collectValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. collectValue : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
5. collectValue : Replaced Shift Right with Shift Left → NO_COVERAGE
6. collectValue : negated conditional → NO_COVERAGE
7. collectValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. collectValue : changed conditional boundary to IFGE → NO_COVERAGE
9. collectValue : changed conditional boundary to IFGT → NO_COVERAGE
10. collectValue : changed conditional boundary to IFLE → NO_COVERAGE
11. collectValue : changed conditional boundary to IFLT → NO_COVERAGE
12. collectValue : changed conditional boundary to IFNE → NO_COVERAGE
                        if ((d >> 16) != 0) {
905 6 1. collectValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. collectValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. collectValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. collectValue : Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE
5. collectValue : Replaced operate with second operand → NO_COVERAGE
6. collectValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                            d -= 0x10000;
906 17 1. collectValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. collectValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. collectValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. collectValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. collectValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. collectValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. collectValue : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
8. collectValue : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
9. collectValue : Changed increment from 1 to -1 → NO_COVERAGE
10. collectValue : Replaced Shift Right with Shift Left → NO_COVERAGE
11. collectValue : Replaced bitwise OR with AND → NO_COVERAGE
12. collectValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. collectValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. collectValue : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
15. collectValue : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
16. collectValue : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
17. collectValue : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                            attrBuffer[attrPtr++] = (char) (0xD800 | (d >> 10));
907 12 1. collectValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. collectValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. collectValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. collectValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. collectValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. collectValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. collectValue : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
8. collectValue : Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE
9. collectValue : Replaced bitwise AND with OR → NO_COVERAGE
10. collectValue : Replaced bitwise OR with AND → NO_COVERAGE
11. collectValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. collectValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                            d = 0xDC00 | (d & 0x3FF);
908 7 1. collectValue : changed conditional boundary → NO_COVERAGE
2. collectValue : negated conditional → NO_COVERAGE
3. collectValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. collectValue : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. collectValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                            if (attrPtr >= attrBuffer.length) {
909 1 1. collectValue : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
                                attrBuffer = _attrCollector.valueBufferFull();
910
                            }
911
                        }
912
                        c = (char) d;
913
                    }
914
                    break;
915
                case XmlCharTypes.CT_ATTR_QUOTE:
916 6 1. collectValue : negated conditional → NO_COVERAGE
2. collectValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
3. collectValue : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
4. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
5. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. collectValue : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                    if (c == quoteChar) {
917
                        break value_loop;
918
                    }
919
                    
920
                    // default:
921
                    // Other chars are not important here...
922
                }
923 12 1. collectValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. collectValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. collectValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. collectValue : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. collectValue : changed conditional boundary → NO_COVERAGE
6. collectValue : negated conditional → NO_COVERAGE
7. collectValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. collectValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. collectValue : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. collectValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            } else if (c >= 0xD800) {
924 12 1. collectValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. collectValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. collectValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. collectValue : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE
5. collectValue : changed conditional boundary → NO_COVERAGE
6. collectValue : negated conditional → NO_COVERAGE
7. collectValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. collectValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. collectValue : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
12. collectValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (c < 0xE000) {
925
                    // if ok, returns second surrogate; otherwise exception
926
                    char d = checkSurrogate(c);
927 5 1. collectValue : Changed increment from 1 to -1 → NO_COVERAGE
2. collectValue : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. collectValue : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. collectValue : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. collectValue : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    attrBuffer[attrPtr++] = c;
928
                    // Need to ensure room for one more
929 7 1. collectValue : changed conditional boundary → NO_COVERAGE
2. collectValue : negated conditional → NO_COVERAGE
3. collectValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. collectValue : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. collectValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (attrPtr >= attrBuffer.length) {
930 1 1. collectValue : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
                        attrBuffer = _attrCollector.valueBufferFull();
931
                    }
932
                    c = d;
933 12 1. collectValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. collectValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. collectValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. collectValue : Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE
5. collectValue : changed conditional boundary → NO_COVERAGE
6. collectValue : negated conditional → NO_COVERAGE
7. collectValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. collectValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. collectValue : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. collectValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. collectValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                } else if (c >= 0xFFFE) {
934
                    c = handleInvalidXmlChar(c);
935
                }
936
            }
937
            // We know there's room for at least one more char
938 5 1. collectValue : Changed increment from 1 to -1 → NO_COVERAGE
2. collectValue : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. collectValue : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. collectValue : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. collectValue : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
            attrBuffer[attrPtr++] = c;
939
        }
940
941 1 1. collectValue : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
        return attrPtr;
942
    }
943
944
    /**
945
     * Method called from the main START_ELEMENT handling loop, to
946
     * parse namespace URI values.
947
     */
948
    private void handleNsDeclaration(PName name, char quoteChar)
949
        throws XMLStreamException
950
    {
951 5 1. handleNsDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleNsDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleNsDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleNsDeclaration : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleNsDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        int attrPtr = 0;
952 1 1. handleNsDeclaration : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → SURVIVED
        char[] attrBuffer = _nameBuffer;
953
954
        while (true) {
955 9 1. handleNsDeclaration : changed conditional boundary → SURVIVED
2. handleNsDeclaration : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleNsDeclaration : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handleNsDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleNsDeclaration : negated conditional → KILLED
6. handleNsDeclaration : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleNsDeclaration : changed conditional boundary to IF_ICMPGE → KILLED
8. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
9. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
            if (_inputPtr >= _inputEnd) {
956 1 1. handleNsDeclaration : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                loadMoreGuaranteed();
957
            }
958 9 1. handleNsDeclaration : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleNsDeclaration : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleNsDeclaration : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleNsDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleNsDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleNsDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleNsDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleNsDeclaration : Replaced operate with second operand → KILLED
9. handleNsDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            char c = _inputBuffer[_inputPtr++];
959 6 1. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleNsDeclaration : negated conditional → KILLED
4. handleNsDeclaration : changed conditional boundary to IF_ICMPEQ → KILLED
5. handleNsDeclaration : changed conditional boundary to IF_ICMPGE → KILLED
6. handleNsDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
            if (c == quoteChar) {
960
                break;
961
            }
962 11 1. handleNsDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleNsDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleNsDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleNsDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleNsDeclaration : Bug fixed: CRCR replace with One, Substituted 38 with 1 → KILLED
8. handleNsDeclaration : negated conditional → KILLED
9. handleNsDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleNsDeclaration : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleNsDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
            if (c == '&') { // entity
963 5 1. handleNsDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDeclaration : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                int d = handleEntityInText(false);
964 6 1. handleNsDeclaration : negated conditional → NO_COVERAGE
2. handleNsDeclaration : changed conditional boundary to IFEQ → NO_COVERAGE
3. handleNsDeclaration : changed conditional boundary to IFGE → NO_COVERAGE
4. handleNsDeclaration : changed conditional boundary to IFGT → NO_COVERAGE
5. handleNsDeclaration : changed conditional boundary to IFLE → NO_COVERAGE
6. handleNsDeclaration : changed conditional boundary to IFLT → NO_COVERAGE
                if (d == 0) { // general entity; should never happen
965 6 1. handleNsDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleNsDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsDeclaration : removed call to com/fasterxml/aalto/in/ReaderScanner::reportUnexpandedEntityInAttr → NO_COVERAGE
                    reportUnexpandedEntityInAttr(name, true);
966
                }
967
                // Ok; does it need a surrogate though? (over 16 bits)
968 12 1. handleNsDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDeclaration : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
5. handleNsDeclaration : Replaced Shift Right with Shift Left → NO_COVERAGE
6. handleNsDeclaration : negated conditional → NO_COVERAGE
7. handleNsDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. handleNsDeclaration : changed conditional boundary to IFGE → NO_COVERAGE
9. handleNsDeclaration : changed conditional boundary to IFGT → NO_COVERAGE
10. handleNsDeclaration : changed conditional boundary to IFLE → NO_COVERAGE
11. handleNsDeclaration : changed conditional boundary to IFLT → NO_COVERAGE
12. handleNsDeclaration : changed conditional boundary to IFNE → NO_COVERAGE
                if ((d >> 16) != 0) {
969 7 1. handleNsDeclaration : changed conditional boundary → NO_COVERAGE
2. handleNsDeclaration : negated conditional → NO_COVERAGE
3. handleNsDeclaration : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. handleNsDeclaration : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. handleNsDeclaration : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (attrPtr >= attrBuffer.length) {
970 1 1. handleNsDeclaration : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
                        _nameBuffer = attrBuffer = DataUtil.growArrayBy(attrBuffer, attrBuffer.length);
971
                    }
972 6 1. handleNsDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDeclaration : Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE
5. handleNsDeclaration : Replaced operate with second operand → NO_COVERAGE
6. handleNsDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    d -= 0x10000;
973 17 1. handleNsDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleNsDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleNsDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleNsDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleNsDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleNsDeclaration : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
8. handleNsDeclaration : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
9. handleNsDeclaration : Changed increment from 1 to -1 → NO_COVERAGE
10. handleNsDeclaration : Replaced Shift Right with Shift Left → NO_COVERAGE
11. handleNsDeclaration : Replaced bitwise OR with AND → NO_COVERAGE
12. handleNsDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleNsDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. handleNsDeclaration : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
15. handleNsDeclaration : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
16. handleNsDeclaration : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
17. handleNsDeclaration : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    attrBuffer[attrPtr++] = (char) (0xD800 | (d >> 10));
974 12 1. handleNsDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleNsDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleNsDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleNsDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleNsDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleNsDeclaration : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
8. handleNsDeclaration : Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE
9. handleNsDeclaration : Replaced bitwise AND with OR → NO_COVERAGE
10. handleNsDeclaration : Replaced bitwise OR with AND → NO_COVERAGE
11. handleNsDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleNsDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    d = 0xDC00 | (d & 0x3FF);
975
                }
976
                c = (char) d;
977 11 1. handleNsDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleNsDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleNsDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleNsDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleNsDeclaration : Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED
8. handleNsDeclaration : negated conditional → KILLED
9. handleNsDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleNsDeclaration : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleNsDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
            } else if (c == '<') { // error
978 1 1. handleNsDeclaration : removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE
                throwUnexpectedChar(c, "'<' not allowed in attribute value");
979
            } else {
980 12 1. handleNsDeclaration : changed conditional boundary → SURVIVED
2. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleNsDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleNsDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleNsDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleNsDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleNsDeclaration : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
9. handleNsDeclaration : negated conditional → KILLED
10. handleNsDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. handleNsDeclaration : changed conditional boundary to IF_ICMPEQ → KILLED
12. handleNsDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
                if (c < INT_SPACE) {
981 11 1. handleNsDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDeclaration : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. handleNsDeclaration : negated conditional → NO_COVERAGE
6. handleNsDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsDeclaration : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleNsDeclaration : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleNsDeclaration : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                    if (c == '\n') {
982 1 1. handleNsDeclaration : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                        markLF();
983 11 1. handleNsDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDeclaration : Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE
5. handleNsDeclaration : negated conditional → NO_COVERAGE
6. handleNsDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsDeclaration : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleNsDeclaration : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleNsDeclaration : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                    } else if (c == '\r') {
984 9 1. handleNsDeclaration : changed conditional boundary → NO_COVERAGE
2. handleNsDeclaration : negated conditional → NO_COVERAGE
3. handleNsDeclaration : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleNsDeclaration : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleNsDeclaration : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleNsDeclaration : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleNsDeclaration : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (_inputPtr >= _inputEnd) {
985 1 1. handleNsDeclaration : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
986
                        }
987 13 1. handleNsDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDeclaration : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. handleNsDeclaration : negated conditional → NO_COVERAGE
6. handleNsDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsDeclaration : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleNsDeclaration : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleNsDeclaration : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. handleNsDeclaration : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleNsDeclaration : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                        if (_inputBuffer[_inputPtr] == '\n') {
988 8 1. handleNsDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleNsDeclaration : Replaced operate with second operand → NO_COVERAGE
6. handleNsDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsDeclaration : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. handleNsDeclaration : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ++_inputPtr;
989
                        }
990 1 1. handleNsDeclaration : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                        markLF();
991 5 1. handleNsDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDeclaration : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. handleNsDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                        c = '\n';
992 11 1. handleNsDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDeclaration : Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE
5. handleNsDeclaration : negated conditional → NO_COVERAGE
6. handleNsDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsDeclaration : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
8. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleNsDeclaration : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. handleNsDeclaration : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    } else if (c != '\t') {
993 1 1. handleNsDeclaration : removed call to com/fasterxml/aalto/in/ReaderScanner::throwInvalidSpace → NO_COVERAGE
                        throwInvalidSpace(c);
994
                    }
995
                }
996
            }
997 7 1. handleNsDeclaration : changed conditional boundary → SURVIVED
2. handleNsDeclaration : negated conditional → SURVIVED
3. handleNsDeclaration : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. handleNsDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
5. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleNsDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
7. handleNsDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
            if (attrPtr >= attrBuffer.length) {
998 1 1. handleNsDeclaration : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
                _nameBuffer = attrBuffer = DataUtil.growArrayBy(attrBuffer, attrBuffer.length);
999
            }
1000 5 1. handleNsDeclaration : Changed increment from 1 to -1 → KILLED
2. handleNsDeclaration : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. handleNsDeclaration : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. handleNsDeclaration : UOI Mutator: Removed unary increment of local variable → KILLED
5. handleNsDeclaration : UOI Mutator: Reversed increment of local variable → KILLED
            attrBuffer[attrPtr++] = c;
1001
        }
1002
1003
        /* Simple optimization: for default ns removal (or, with
1004
         * ns 1.1, any other as well), will use empty value... no
1005
         * need to try to intern:
1006
         */
1007 6 1. handleNsDeclaration : changed conditional boundary to IFGE → SURVIVED
2. handleNsDeclaration : changed conditional boundary to IFGT → SURVIVED
3. handleNsDeclaration : negated conditional → KILLED
4. handleNsDeclaration : changed conditional boundary to IFEQ → KILLED
5. handleNsDeclaration : changed conditional boundary to IFLE → KILLED
6. handleNsDeclaration : changed conditional boundary to IFLT → KILLED
        if (attrPtr == 0) {
1008 1 1. handleNsDeclaration : removed call to com/fasterxml/aalto/in/ReaderScanner::bindNs → NO_COVERAGE
            bindNs(name, "");
1009
        } else {
1010 1 1. handleNsDeclaration : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_config mutated with null check on object → SURVIVED
            String uri = _config.canonicalizeURI(attrBuffer, attrPtr);
1011 1 1. handleNsDeclaration : removed call to com/fasterxml/aalto/in/ReaderScanner::bindNs → KILLED
            bindNs(name, uri);
1012
        }
1013
    }
1014
1015
    protected final int handleEndElement()
1016
        throws XMLStreamException
1017
    {
1018 8 1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_depth mutated with null check on object → SURVIVED
2. handleEndElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_depth mutated with null check on object → SURVIVED
3. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleEndElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handleEndElement : Replaced operate with second operand → KILLED
8. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        --_depth;
1019
1020 6 1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED
2. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEndElement : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        _currToken = END_ELEMENT;
1021
        // Ok, at this point we have seen '/', need the name
1022 2 1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currElem mutated with null check on object → SURVIVED
2. handleEndElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenName mutated with null check on object → SURVIVED
        _tokenName = _currElem.getName();
1023 1 1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenName mutated with null check on object → SURVIVED
        String pname = _tokenName.getPrefixedName();
1024
        char c;
1025 5 1. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEndElement : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        int i = 0;
1026
        int len = pname.length();
1027
        do {
1028 9 1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleEndElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleEndElement : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleEndElement : changed conditional boundary → KILLED
5. handleEndElement : negated conditional → KILLED
6. handleEndElement : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleEndElement : changed conditional boundary to IF_ICMPGE → KILLED
8. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
            if (_inputPtr >= _inputEnd) {
1029 1 1. handleEndElement : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → KILLED
                loadMoreGuaranteed();
1030
            }
1031 9 1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleEndElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleEndElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleEndElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleEndElement : Replaced operate with second operand → KILLED
9. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            c = _inputBuffer[_inputPtr++];
1032 6 1. handleEndElement : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleEndElement : negated conditional → KILLED
3. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
4. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
5. handleEndElement : changed conditional boundary to IF_ICMPLT → KILLED
6. handleEndElement : changed conditional boundary to IF_ICMPNE → KILLED
            if (c != pname.charAt(i)) {
1033 1 1. handleEndElement : removed call to com/fasterxml/aalto/in/ReaderScanner::reportUnexpectedEndTag → NO_COVERAGE
                reportUnexpectedEndTag(pname);
1034
            }
1035 12 1. handleEndElement : changed conditional boundary to IF_ICMPNE → SURVIVED
2. handleEndElement : changed conditional boundary → KILLED
3. handleEndElement : Changed increment from 1 to -1 → KILLED
4. handleEndElement : negated conditional → KILLED
5. handleEndElement : changed conditional boundary to IF_ICMPEQ → KILLED
6. handleEndElement : changed conditional boundary to IF_ICMPGE → KILLED
7. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
8. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleEndElement : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
10. handleEndElement : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
11. handleEndElement : UOI Mutator: Removed unary increment of local variable → KILLED
12. handleEndElement : UOI Mutator: Reversed increment of local variable → KILLED
        } while (++i < len);
1036
1037
        // Can still have a problem, if name didn't end there...
1038 9 1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleEndElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleEndElement : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleEndElement : changed conditional boundary → KILLED
5. handleEndElement : negated conditional → KILLED
6. handleEndElement : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleEndElement : changed conditional boundary to IF_ICMPGE → KILLED
8. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
        if (_inputPtr >= _inputEnd) {
1039 1 1. handleEndElement : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → KILLED
            loadMoreGuaranteed();
1040
        }
1041 9 1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleEndElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleEndElement : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleEndElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleEndElement : Replaced operate with second operand → KILLED
9. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        c = _inputBuffer[_inputPtr++];
1042 11 1. handleEndElement : changed conditional boundary → SURVIVED
2. handleEndElement : changed conditional boundary to IF_ICMPGE → SURVIVED
3. handleEndElement : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleEndElement : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
8. handleEndElement : negated conditional → KILLED
9. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleEndElement : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleEndElement : changed conditional boundary to IF_ICMPLT → KILLED
        if (c <= ' ') {
1043 5 1. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElement : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
            c = skipInternalWs(false, null);
1044 11 1. handleEndElement : negated conditional → SURVIVED
2. handleEndElement : changed conditional boundary to IF_ICMPGE → SURVIVED
3. handleEndElement : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleEndElement : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleEndElement : changed conditional boundary to IF_ICMPLT → SURVIVED
6. handleEndElement : changed conditional boundary to IF_ICMPNE → SURVIVED
7. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEndElement : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
11. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        } else if (c != '>') {
1045 17 1. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElement : Bug fixed: CRCR replace with One, Substituted 58 with 1 → NO_COVERAGE
5. handleEndElement : negated conditional → NO_COVERAGE
6. handleEndElement : negated conditional → NO_COVERAGE
7. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. handleEndElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEndElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEndElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEndElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
12. handleEndElement : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
13. handleEndElement : changed conditional boundary to IFGE → NO_COVERAGE
14. handleEndElement : changed conditional boundary to IFGT → NO_COVERAGE
15. handleEndElement : changed conditional boundary to IFLE → NO_COVERAGE
16. handleEndElement : changed conditional boundary to IFLT → NO_COVERAGE
17. handleEndElement : changed conditional boundary to IFNE → NO_COVERAGE
            if (c == ':' || XmlChars.is10NameChar(c)) {
1046 1 1. handleEndElement : removed call to com/fasterxml/aalto/in/ReaderScanner::reportUnexpectedEndTag → NO_COVERAGE
                reportUnexpectedEndTag(pname);
1047
            }
1048
        }
1049 11 1. handleEndElement : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR
3. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleEndElement : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
6. handleEndElement : negated conditional → KILLED
7. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
10. handleEndElement : changed conditional boundary to IF_ICMPLT → KILLED
11. handleEndElement : changed conditional boundary to IF_ICMPNE → KILLED
        if (c != '>') {
1050 1 1. handleEndElement : removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE
            throwUnexpectedChar(c, " expected space or closing '>'");
1051
        }
1052 6 1. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEndElement : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
5. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleEndElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
        return END_ELEMENT;
1053
    }
1054
1055
    protected final int handleEntityInText(boolean inAttr)
1056
        throws XMLStreamException
1057
    {
1058 9 1. handleEntityInText : changed conditional boundary → SURVIVED
2. handleEntityInText : negated conditional → SURVIVED
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleEntityInText : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleEntityInText : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handleEntityInText : changed conditional boundary to IF_ICMPNE → SURVIVED
        if (_inputPtr >= _inputEnd) {
1059 1 1. handleEntityInText : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
            loadMoreGuaranteed();
1060
        }
1061 9 1. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleEntityInText : Replaced operate with second operand → KILLED
9. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        char c = _inputBuffer[_inputPtr++];
1062 11 1. handleEntityInText : negated conditional → SURVIVED
2. handleEntityInText : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleEntityInText : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleEntityInText : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 35 with 1 → KILLED
11. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        if (c == '#') {
1063 1 1. handleEntityInText : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
            return handleCharEntity();
1064
        }
1065
        String start;
1066 11 1. handleEntityInText : negated conditional → SURVIVED
2. handleEntityInText : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleEntityInText : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleEntityInText : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 97 with 1 → KILLED
11. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        if (c == 'a') { // amp or apos?
1067 9 1. handleEntityInText : changed conditional boundary → SURVIVED
2. handleEntityInText : negated conditional → SURVIVED
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleEntityInText : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleEntityInText : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handleEntityInText : changed conditional boundary to IF_ICMPNE → SURVIVED
            if (_inputPtr >= _inputEnd) {
1068 1 1. handleEntityInText : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                loadMoreGuaranteed();
1069
            }
1070 9 1. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleEntityInText : Replaced operate with second operand → KILLED
9. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            c = _inputBuffer[_inputPtr++];
1071 11 1. handleEntityInText : negated conditional → SURVIVED
2. handleEntityInText : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleEntityInText : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleEntityInText : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 109 with 1 → KILLED
11. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            if (c == 'm') { // amp?
1072 9 1. handleEntityInText : changed conditional boundary → SURVIVED
2. handleEntityInText : negated conditional → SURVIVED
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleEntityInText : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleEntityInText : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handleEntityInText : changed conditional boundary to IF_ICMPNE → SURVIVED
                if (_inputPtr >= _inputEnd) {
1073 1 1. handleEntityInText : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
1074
                }
1075 9 1. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleEntityInText : Replaced operate with second operand → KILLED
9. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                c = _inputBuffer[_inputPtr++];
1076 11 1. handleEntityInText : negated conditional → SURVIVED
2. handleEntityInText : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleEntityInText : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleEntityInText : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 112 with 1 → KILLED
11. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                if (c == 'p') {
1077 9 1. handleEntityInText : changed conditional boundary → SURVIVED
2. handleEntityInText : negated conditional → SURVIVED
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleEntityInText : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleEntityInText : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handleEntityInText : changed conditional boundary to IF_ICMPNE → SURVIVED
                    if (_inputPtr >= _inputEnd) {
1078 1 1. handleEntityInText : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                        loadMoreGuaranteed();
1079
                    }
1080 9 1. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleEntityInText : Replaced operate with second operand → KILLED
9. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                    c = _inputBuffer[_inputPtr++];
1081 11 1. handleEntityInText : negated conditional → SURVIVED
2. handleEntityInText : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleEntityInText : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleEntityInText : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED
11. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                    if (c == ';') {
1082 6 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 38 with 1 → KILLED
5. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleEntityInText : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
                        return INT_AMP;
1083
                    }
1084
                    start = "amp";
1085
                } else {
1086
                    start = "am";
1087
                }
1088 11 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 112 with 1 → NO_COVERAGE
5. handleEntityInText : negated conditional → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
            } else if (c == 'p') { // apos?
1089 9 1. handleEntityInText : changed conditional boundary → NO_COVERAGE
2. handleEntityInText : negated conditional → NO_COVERAGE
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (_inputPtr >= _inputEnd) {
1090 1 1. handleEntityInText : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
1091
                }
1092 9 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleEntityInText : Replaced operate with second operand → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                c = _inputBuffer[_inputPtr++];
1093 11 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 111 with 1 → NO_COVERAGE
5. handleEntityInText : negated conditional → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                if (c == 'o') {
1094 9 1. handleEntityInText : changed conditional boundary → NO_COVERAGE
2. handleEntityInText : negated conditional → NO_COVERAGE
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (_inputPtr >= _inputEnd) {
1095 1 1. handleEntityInText : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                        loadMoreGuaranteed();
1096
                    }
1097 9 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleEntityInText : Replaced operate with second operand → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                    c = _inputBuffer[_inputPtr++];
1098 11 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 115 with 1 → NO_COVERAGE
5. handleEntityInText : negated conditional → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                    if (c == 's') {
1099 9 1. handleEntityInText : changed conditional boundary → NO_COVERAGE
2. handleEntityInText : negated conditional → NO_COVERAGE
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (_inputPtr >= _inputEnd) {
1100 1 1. handleEntityInText : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
1101
                        }
1102 9 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleEntityInText : Replaced operate with second operand → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        c = _inputBuffer[_inputPtr++];
1103 11 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE
5. handleEntityInText : negated conditional → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                        if (c == ';') {
1104 6 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 39 with 1 → NO_COVERAGE
5. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEntityInText : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                            return INT_APOS;
1105
                        }
1106
                        start = "apos";
1107
                    } else {
1108
                        start = "apo";
1109
                    }
1110
                } else {
1111
                    start = "ap";
1112
                }
1113
            } else {
1114
                start = "a";
1115
            }
1116 11 1. handleEntityInText : negated conditional → SURVIVED
2. handleEntityInText : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleEntityInText : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleEntityInText : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR
8. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 108 with 1 → KILLED
11. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        } else if (c == 'l') { // lt?
1117 9 1. handleEntityInText : changed conditional boundary → NO_COVERAGE
2. handleEntityInText : negated conditional → NO_COVERAGE
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (_inputPtr >= _inputEnd) {
1118 1 1. handleEntityInText : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                loadMoreGuaranteed();
1119
            }
1120 9 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleEntityInText : Replaced operate with second operand → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
            c = _inputBuffer[_inputPtr++];
1121 11 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 116 with 1 → NO_COVERAGE
5. handleEntityInText : negated conditional → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
            if (c == 't') {
1122 9 1. handleEntityInText : changed conditional boundary → NO_COVERAGE
2. handleEntityInText : negated conditional → NO_COVERAGE
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (_inputPtr >= _inputEnd) {
1123 1 1. handleEntityInText : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
1124
                }
1125 9 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleEntityInText : Replaced operate with second operand → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                c = _inputBuffer[_inputPtr++];
1126 11 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE
5. handleEntityInText : negated conditional → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                if (c == ';') {
1127 6 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 60 with 1 → NO_COVERAGE
5. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEntityInText : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                    return INT_LT;
1128
                }
1129
                start = "lt";
1130
            } else {
1131
                start = "l";
1132
            }
1133 11 1. handleEntityInText : negated conditional → SURVIVED
2. handleEntityInText : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleEntityInText : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleEntityInText : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 103 with 1 → KILLED
11. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        } else if (c == 'g') { // gt?
1134 9 1. handleEntityInText : changed conditional boundary → NO_COVERAGE
2. handleEntityInText : negated conditional → NO_COVERAGE
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (_inputPtr >= _inputEnd) {
1135 1 1. handleEntityInText : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                loadMoreGuaranteed();
1136
            }
1137 9 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleEntityInText : Replaced operate with second operand → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
            c = _inputBuffer[_inputPtr++];
1138 11 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 116 with 1 → NO_COVERAGE
5. handleEntityInText : negated conditional → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
            if (c == 't') {
1139 9 1. handleEntityInText : changed conditional boundary → NO_COVERAGE
2. handleEntityInText : negated conditional → NO_COVERAGE
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (_inputPtr >= _inputEnd) {
1140 1 1. handleEntityInText : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
1141
                }
1142 9 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleEntityInText : Replaced operate with second operand → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                c = _inputBuffer[_inputPtr++];
1143 11 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE
5. handleEntityInText : negated conditional → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                if (c == ';') {
1144 6 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE
5. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEntityInText : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                    return INT_GT;
1145
                }
1146
                start = "gt";
1147
            } else {
1148
                start = "g";
1149
            }
1150 11 1. handleEntityInText : negated conditional → SURVIVED
2. handleEntityInText : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleEntityInText : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleEntityInText : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 113 with 1 → KILLED
11. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        } else if (c == 'q') { // quot?
1151 9 1. handleEntityInText : changed conditional boundary → NO_COVERAGE
2. handleEntityInText : negated conditional → NO_COVERAGE
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (_inputPtr >= _inputEnd) {
1152 1 1. handleEntityInText : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                loadMoreGuaranteed();
1153
            }
1154 9 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleEntityInText : Replaced operate with second operand → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
            c = _inputBuffer[_inputPtr++];
1155 11 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 117 with 1 → NO_COVERAGE
5. handleEntityInText : negated conditional → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
            if (c == 'u') {
1156 9 1. handleEntityInText : changed conditional boundary → NO_COVERAGE
2. handleEntityInText : negated conditional → NO_COVERAGE
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (_inputPtr >= _inputEnd) {
1157 1 1. handleEntityInText : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
1158
                }
1159 9 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleEntityInText : Replaced operate with second operand → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                c = _inputBuffer[_inputPtr++];
1160 11 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 111 with 1 → NO_COVERAGE
5. handleEntityInText : negated conditional → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                if (c == 'o') {
1161 9 1. handleEntityInText : changed conditional boundary → NO_COVERAGE
2. handleEntityInText : negated conditional → NO_COVERAGE
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (_inputPtr >= _inputEnd) {
1162 1 1. handleEntityInText : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                        loadMoreGuaranteed();
1163
                    }
1164 9 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleEntityInText : Replaced operate with second operand → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                    c = _inputBuffer[_inputPtr++];
1165 11 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 116 with 1 → NO_COVERAGE
5. handleEntityInText : negated conditional → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                    if (c == 't') {
1166 9 1. handleEntityInText : changed conditional boundary → NO_COVERAGE
2. handleEntityInText : negated conditional → NO_COVERAGE
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (_inputPtr >= _inputEnd) {
1167 1 1. handleEntityInText : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
1168
                        }
1169 9 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleEntityInText : Replaced operate with second operand → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        c = _inputBuffer[_inputPtr++];
1170 11 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE
5. handleEntityInText : negated conditional → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                        if (c == ';') {
1171 6 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 34 with 1 → NO_COVERAGE
5. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEntityInText : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                            return INT_QUOTE;
1172
                        }
1173
                        start = "quot";
1174
                    } else {
1175
                        start = "quo";
1176
                    }
1177
                } else {
1178
                    start = "qu";
1179
                }
1180
            } else {
1181
                start = "q";
1182
            }
1183
        } else {
1184
            start = "";
1185
        }
1186
1187 1 1. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldNAME_CHARS mutated with null check on object → SURVIVED
        final int[] TYPES = sCharTypes.NAME_CHARS;
1188
1189
        /* All righty: we have the beginning of the name, plus the first
1190
         * char too. So let's see what we can do with it.
1191
         */
1192 1 1. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → SURVIVED
        char[] cbuf = _nameBuffer;
1193 5 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        int cix = 0;
1194 12 1. handleEntityInText : Changed increment from 1 to -1 → SURVIVED
2. handleEntityInText : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleEntityInText : UOI Mutator: Added unary decrement 1 -> 0 to local variable → SURVIVED
4. handleEntityInText : UOI Mutator: Added unary increment 1 -> 2 to local variable → SURVIVED
5. handleEntityInText : UOI Mutator: Removed unary increment of local variable → SURVIVED
6. handleEntityInText : UOI Mutator: Reversed increment of local variable → SURVIVED
7. handleEntityInText : changed conditional boundary → KILLED
8. handleEntityInText : negated conditional → KILLED
9. handleEntityInText : changed conditional boundary to IF_ICMPGT → KILLED
10. handleEntityInText : changed conditional boundary to IF_ICMPGT → KILLED
11. handleEntityInText : changed conditional boundary to IF_ICMPLT → KILLED
12. handleEntityInText : changed conditional boundary to IF_ICMPNE → KILLED
        for (int len = start.length(); cix < len; ++cix) {
1195
            cbuf[cix] = start.charAt(cix);
1196
        }
1197
        //int colon = -1;
1198 11 1. handleEntityInText : negated conditional → SURVIVED
2. handleEntityInText : changed conditional boundary to IF_ICMPGE → SURVIVED
3. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleEntityInText : changed conditional boundary to IF_ICMPLT → SURVIVED
6. handleEntityInText : changed conditional boundary to IF_ICMPNE → SURVIVED
7. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED
11. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        while (c != ';') {
1199
            boolean ok;
1200
1201
            // Has to be a valid name start char though:
1202 11 1. handleEntityInText : changed conditional boundary → SURVIVED
2. handleEntityInText : negated conditional → SURVIVED
3. handleEntityInText : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. handleEntityInText : changed conditional boundary to IF_ICMPGE → SURVIVED
5. handleEntityInText : changed conditional boundary to IF_ICMPLT → SURVIVED
6. handleEntityInText : changed conditional boundary to IF_ICMPNE → SURVIVED
7. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
11. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            if (c <= 0xFF) {
1203
                switch (TYPES[c]) {
1204
                case XmlCharTypes.CT_NAME_NONE:
1205
                case XmlCharTypes.CT_NAME_COLON: // not ok for entities?
1206
                case XmlCharTypes.CT_NAME_NONFIRST:
1207 17 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
9. handleEntityInText : changed conditional boundary → NO_COVERAGE
10. handleEntityInText : negated conditional → NO_COVERAGE
11. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleEntityInText : changed conditional boundary to IFEQ → NO_COVERAGE
14. handleEntityInText : changed conditional boundary to IFGE → NO_COVERAGE
15. handleEntityInText : changed conditional boundary to IFGT → NO_COVERAGE
16. handleEntityInText : changed conditional boundary to IFLT → NO_COVERAGE
17. handleEntityInText : changed conditional boundary to IFNE → NO_COVERAGE
                    ok = (cix > 0);
1208
                    break;
1209
                case XmlCharTypes.CT_NAME_ANY:
1210 5 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                    ok = true;
1211
                    break;
1212
                default:
1213 5 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    ok = false;
1214
                    break;
1215
                }
1216
            } else {
1217 12 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE
5. handleEntityInText : changed conditional boundary → NO_COVERAGE
6. handleEntityInText : negated conditional → NO_COVERAGE
7. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
12. handleEntityInText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (c < 0xE000) {
1218
                    // if ok, returns second surrogate; otherwise exception
1219
                    int value = decodeSurrogate(c);
1220 7 1. handleEntityInText : changed conditional boundary → NO_COVERAGE
2. handleEntityInText : negated conditional → NO_COVERAGE
3. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. handleEntityInText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (cix >= cbuf.length) {
1221 1 1. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
                        _nameBuffer = cbuf = DataUtil.growArrayBy(cbuf, cbuf.length);
1222
                    }
1223 5 1. handleEntityInText : Changed increment from 1 to -1 → NO_COVERAGE
2. handleEntityInText : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. handleEntityInText : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. handleEntityInText : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. handleEntityInText : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    cbuf[cix++] = c;
1224 8 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleEntityInText : Replaced operate with second operand → NO_COVERAGE
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                    c = _inputBuffer[_inputPtr-1]; // was read by decode func
1225 6 1. handleEntityInText : negated conditional → NO_COVERAGE
2. handleEntityInText : changed conditional boundary to IFEQ → NO_COVERAGE
3. handleEntityInText : changed conditional boundary to IFGE → NO_COVERAGE
4. handleEntityInText : changed conditional boundary to IFGT → NO_COVERAGE
5. handleEntityInText : changed conditional boundary to IFLE → NO_COVERAGE
6. handleEntityInText : changed conditional boundary to IFLT → NO_COVERAGE
                    ok = (cix == 0) ? XmlChars.is10NameStartChar(value)
1226
                        : XmlChars.is10NameChar(value);
1227 12 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE
5. handleEntityInText : changed conditional boundary → NO_COVERAGE
6. handleEntityInText : negated conditional → NO_COVERAGE
7. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. handleEntityInText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. handleEntityInText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleEntityInText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                } else if (c >= 0xFFFE) {
1228
                    c = handleInvalidXmlChar(c);
1229 5 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    ok = false; // never gets here
1230
                } else {
1231 5 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    ok = true;
1232
                }
1233
            }
1234 6 1. handleEntityInText : negated conditional → SURVIVED
2. handleEntityInText : changed conditional boundary to IFEQ → SURVIVED
3. handleEntityInText : changed conditional boundary to IFGE → SURVIVED
4. handleEntityInText : changed conditional boundary to IFGT → SURVIVED
5. handleEntityInText : changed conditional boundary to IFLE → SURVIVED
6. handleEntityInText : changed conditional boundary to IFLT → SURVIVED
            if (!ok) {
1235 1 1. handleEntityInText : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidNameChar → NO_COVERAGE
                reportInvalidNameChar(c, cix);
1236
            }
1237 7 1. handleEntityInText : changed conditional boundary → SURVIVED
2. handleEntityInText : negated conditional → SURVIVED
3. handleEntityInText : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. handleEntityInText : changed conditional boundary to IF_ICMPGE → SURVIVED
5. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
7. handleEntityInText : changed conditional boundary to IF_ICMPNE → SURVIVED
            if (cix >= cbuf.length) {
1238 1 1. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
                _nameBuffer = cbuf = DataUtil.growArrayBy(cbuf, cbuf.length);
1239
            }
1240 5 1. handleEntityInText : UOI Mutator: Added unary decrement 1 -> 0 to local variable → SURVIVED
2. handleEntityInText : UOI Mutator: Added unary increment 1 -> 2 to local variable → SURVIVED
3. handleEntityInText : UOI Mutator: Removed unary increment of local variable → SURVIVED
4. handleEntityInText : Changed increment from 1 to -1 → KILLED
5. handleEntityInText : UOI Mutator: Reversed increment of local variable → KILLED
            cbuf[cix++] = c;
1241 9 1. handleEntityInText : changed conditional boundary → SURVIVED
2. handleEntityInText : negated conditional → SURVIVED
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleEntityInText : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleEntityInText : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleEntityInText : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handleEntityInText : changed conditional boundary to IF_ICMPNE → SURVIVED
            if (_inputPtr >= _inputEnd) {
1242 1 1. handleEntityInText : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                loadMoreGuaranteed();
1243
            }
1244 9 1. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleEntityInText : Replaced operate with second operand → KILLED
9. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            c = _inputBuffer[_inputPtr++];
1245
        }
1246
1247
        // Ok, let's construct a (temporary) entity name, then:
1248 5 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        String pname = new String(cbuf, 0, cix);
1249
        // (note: hash is dummy... not to be compared to anything etc)
1250 6 1. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        _tokenName = new PNameC(pname, null, pname, 0);
1251
1252
        /* One more thing: do we actually allow entities in this mode
1253
         * and with this event?
1254
         */
1255 7 1. handleEntityInText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_config mutated with null check on object → SURVIVED
2. handleEntityInText : changed conditional boundary to IFLE → SURVIVED
3. handleEntityInText : changed conditional boundary to IFLT → SURVIVED
4. handleEntityInText : negated conditional → KILLED
5. handleEntityInText : changed conditional boundary to IFGE → KILLED
6. handleEntityInText : changed conditional boundary to IFGT → KILLED
7. handleEntityInText : changed conditional boundary to IFNE → KILLED
        if (_config.willExpandEntities()) {
1256 1 1. handleEntityInText : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → KILLED
            reportInputProblem("General entity reference (&"+pname+";) encountered in entity expanding mode: operation not (yet) implemented");
1257
        }
1258 6 1. handleEntityInText : negated conditional → NO_COVERAGE
2. handleEntityInText : changed conditional boundary to IFGE → NO_COVERAGE
3. handleEntityInText : changed conditional boundary to IFGT → NO_COVERAGE
4. handleEntityInText : changed conditional boundary to IFLE → NO_COVERAGE
5. handleEntityInText : changed conditional boundary to IFLT → NO_COVERAGE
6. handleEntityInText : changed conditional boundary to IFNE → NO_COVERAGE
        if (inAttr) {
1259 1 1. handleEntityInText : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE
            reportInputProblem("General entity reference (&"+pname+";) encountered in attribute value, in non-entity-expanding mode: no way to handle it");
1260
        }
1261 6 1. handleEntityInText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInText : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleEntityInText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEntityInText : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
        return 0;
1262
    }
1263
1264
    @Override
1265
    protected final void finishComment() throws XMLStreamException
1266
    {
1267 1 1. finishComment : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → SURVIVED
        final int[] TYPES = sCharTypes.OTHER_CHARS;
1268 1 1. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
        final char[] inputBuffer = _inputBuffer;
1269 1 1. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED
        char[] outputBuffer = _textBuilder.resetWithEmpty();
1270 5 1. finishComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. finishComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. finishComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. finishComment : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. finishComment : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        int outPtr = 0;
1271
1272
        main_loop:
1273
        while (true) {
1274
            char c;
1275
1276
            // Then the tight ascii non-funny-char loop:
1277
            ascii_loop:
1278
            while (true) {
1279 1 1. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                int ptr = _inputPtr;
1280 8 1. finishComment : changed conditional boundary → SURVIVED
2. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
3. finishComment : changed conditional boundary to IF_ICMPNE → SURVIVED
4. finishComment : negated conditional → KILLED
5. finishComment : changed conditional boundary to IF_ICMPEQ → KILLED
6. finishComment : changed conditional boundary to IF_ICMPGE → KILLED
7. finishComment : changed conditional boundary to IF_ICMPGT → KILLED
8. finishComment : changed conditional boundary to IF_ICMPGT → KILLED
                if (ptr >= _inputEnd) {
1281 1 1. finishComment : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
1282 1 1. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                    ptr = _inputPtr;
1283
                }
1284 7 1. finishComment : changed conditional boundary → SURVIVED
2. finishComment : changed conditional boundary to IF_ICMPNE → SURVIVED
3. finishComment : negated conditional → KILLED
4. finishComment : changed conditional boundary to IF_ICMPEQ → KILLED
5. finishComment : changed conditional boundary to IF_ICMPGE → KILLED
6. finishComment : changed conditional boundary to IF_ICMPGT → KILLED
7. finishComment : changed conditional boundary to IF_ICMPGT → KILLED
                if (outPtr >= outputBuffer.length) {
1285 1 1. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                    outputBuffer = _textBuilder.finishCurrentSegment();
1286 5 1. finishComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishComment : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    outPtr = 0;
1287
                }
1288 1 1. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
                int max = _inputEnd;
1289
                {
1290 2 1. finishComment : Replaced operate with second operand → KILLED
2. finishComment : Replaced operate with second operand → KILLED
                    int max2 = ptr + (outputBuffer.length - outPtr);
1291 7 1. finishComment : changed conditional boundary → SURVIVED
2. finishComment : negated conditional → SURVIVED
3. finishComment : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. finishComment : changed conditional boundary to IF_ICMPGT → SURVIVED
5. finishComment : changed conditional boundary to IF_ICMPGT → SURVIVED
6. finishComment : changed conditional boundary to IF_ICMPLT → SURVIVED
7. finishComment : changed conditional boundary to IF_ICMPNE → SURVIVED
                    if (max2 < max) {
1292
                        max = max2;
1293
                    }
1294
                }
1295 7 1. finishComment : changed conditional boundary → SURVIVED
2. finishComment : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. finishComment : changed conditional boundary to IF_ICMPGT → SURVIVED
4. finishComment : changed conditional boundary to IF_ICMPGT → SURVIVED
5. finishComment : negated conditional → TIMED_OUT
6. finishComment : changed conditional boundary to IF_ICMPLT → TIMED_OUT
7. finishComment : changed conditional boundary to IF_ICMPNE → TIMED_OUT
                while (ptr < max) {
1296 5 1. finishComment : Changed increment from 1 to -1 → KILLED
2. finishComment : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. finishComment : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. finishComment : UOI Mutator: Removed unary increment of local variable → KILLED
5. finishComment : UOI Mutator: Reversed increment of local variable → KILLED
                    c = inputBuffer[ptr++];
1297 11 1. finishComment : changed conditional boundary → SURVIVED
2. finishComment : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. finishComment : changed conditional boundary to IF_ICMPGE → SURVIVED
4. finishComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. finishComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. finishComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. finishComment : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
8. finishComment : negated conditional → KILLED
9. finishComment : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. finishComment : changed conditional boundary to IF_ICMPLT → KILLED
11. finishComment : changed conditional boundary to IF_ICMPNE → KILLED
                    if (c <= 0xFF) {
1298 6 1. finishComment : changed conditional boundary to IFLE → SURVIVED
2. finishComment : changed conditional boundary to IFLT → SURVIVED
3. finishComment : negated conditional → KILLED
4. finishComment : changed conditional boundary to IFGE → KILLED
5. finishComment : changed conditional boundary to IFGT → KILLED
6. finishComment : changed conditional boundary to IFNE → KILLED
                        if (TYPES[c] != 0) {
1299 1 1. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                            _inputPtr = ptr;
1300
                            break ascii_loop;
1301
                        }
1302 12 1. finishComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishComment : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. finishComment : changed conditional boundary → NO_COVERAGE
6. finishComment : negated conditional → NO_COVERAGE
7. finishComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishComment : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishComment : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishComment : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    } else if (c >= 0xD800) { // surrogates and 0xFFFE/0xFFFF
1303 1 1. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        _inputPtr = ptr;
1304
                        break ascii_loop;
1305
                    }
1306 5 1. finishComment : Changed increment from 1 to -1 → KILLED
2. finishComment : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. finishComment : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. finishComment : UOI Mutator: Removed unary increment of local variable → KILLED
5. finishComment : UOI Mutator: Reversed increment of local variable → KILLED
                    outputBuffer[outPtr++] = c;
1307
                }
1308 1 1. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                _inputPtr = ptr;
1309
            }
1310
1311 11 1. finishComment : changed conditional boundary → SURVIVED
2. finishComment : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. finishComment : changed conditional boundary to IF_ICMPGE → SURVIVED
4. finishComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. finishComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. finishComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. finishComment : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
8. finishComment : negated conditional → KILLED
9. finishComment : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. finishComment : changed conditional boundary to IF_ICMPLT → KILLED
11. finishComment : changed conditional boundary to IF_ICMPNE → KILLED
            if (c <= 0xFF) {
1312
                switch (TYPES[c]) {
1313
                case XmlCharTypes.CT_INVALID:
1314
                    c = handleInvalidXmlChar(c);
1315
                case XmlCharTypes.CT_WS_CR:
1316
                    {
1317 9 1. finishComment : changed conditional boundary → NO_COVERAGE
2. finishComment : negated conditional → NO_COVERAGE
3. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. finishComment : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. finishComment : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. finishComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. finishComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. finishComment : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (_inputPtr >= _inputEnd) {
1318 1 1. finishComment : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
1319
                        }
1320 12 1. finishComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishComment : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. finishComment : negated conditional → NO_COVERAGE
6. finishComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. finishComment : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishComment : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishComment : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                        if (inputBuffer[_inputPtr] == '\n') {
1321 8 1. finishComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishComment : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishComment : Replaced operate with second operand → NO_COVERAGE
6. finishComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ++_inputPtr;
1322
                        }
1323 1 1. finishComment : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                        markLF();
1324
                    }
1325 5 1. finishComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishComment : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. finishComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    c = '\n';
1326
                    break;
1327
                case XmlCharTypes.CT_WS_LF:
1328 1 1. finishComment : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                    markLF();
1329
                    break;
1330
                case XmlCharTypes.CT_HYPHEN: // '-->'?
1331 9 1. finishComment : changed conditional boundary → SURVIVED
2. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. finishComment : changed conditional boundary to IF_ICMPNE → SURVIVED
5. finishComment : negated conditional → KILLED
6. finishComment : changed conditional boundary to IF_ICMPEQ → KILLED
7. finishComment : changed conditional boundary to IF_ICMPGE → KILLED
8. finishComment : changed conditional boundary to IF_ICMPGT → KILLED
9. finishComment : changed conditional boundary to IF_ICMPGT → KILLED
                    if (_inputPtr >= _inputEnd) {
1332 1 1. finishComment : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                        loadMoreGuaranteed();
1333
                    }
1334 13 1. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishComment : changed conditional boundary to IF_ICMPGT → SURVIVED
4. finishComment : changed conditional boundary to IF_ICMPGT → SURVIVED
5. finishComment : changed conditional boundary to IF_ICMPLT → SURVIVED
6. finishComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. finishComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. finishComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. finishComment : Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED
10. finishComment : negated conditional → KILLED
11. finishComment : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. finishComment : changed conditional boundary to IF_ICMPEQ → KILLED
13. finishComment : changed conditional boundary to IF_ICMPGE → KILLED
                    if (_inputBuffer[_inputPtr] == '-') { // ok, must be end then
1335 8 1. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. finishComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. finishComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. finishComment : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. finishComment : Replaced operate with second operand → KILLED
8. finishComment : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                        ++_inputPtr;
1336 9 1. finishComment : changed conditional boundary → SURVIVED
2. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. finishComment : changed conditional boundary to IF_ICMPNE → SURVIVED
5. finishComment : negated conditional → KILLED
6. finishComment : changed conditional boundary to IF_ICMPEQ → KILLED
7. finishComment : changed conditional boundary to IF_ICMPGE → KILLED
8. finishComment : changed conditional boundary to IF_ICMPGT → KILLED
9. finishComment : changed conditional boundary to IF_ICMPGT → KILLED
                        if (_inputPtr >= _inputEnd) {
1337 1 1. finishComment : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
1338
                        }
1339 20 1. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. finishComment : changed conditional boundary to IF_ICMPGE → SURVIVED
5. finishComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. finishComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. finishComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. finishComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. finishComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. finishComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. finishComment : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
12. finishComment : Replaced operate with second operand → KILLED
13. finishComment : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
14. finishComment : negated conditional → KILLED
15. finishComment : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
16. finishComment : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. finishComment : changed conditional boundary to IF_ICMPGT → KILLED
18. finishComment : changed conditional boundary to IF_ICMPGT → KILLED
19. finishComment : changed conditional boundary to IF_ICMPLT → KILLED
20. finishComment : changed conditional boundary to IF_ICMPNE → KILLED
                        if (_inputBuffer[_inputPtr++] != '>') {
1340 1 1. finishComment : removed call to com/fasterxml/aalto/in/ReaderScanner::reportDoubleHyphenInComments → NO_COVERAGE
                            reportDoubleHyphenInComments();
1341
                        }
1342
                        break main_loop;
1343
                    }
1344
                    break;
1345
                // default:
1346
                // Other types are not important here..
1347
                }
1348 12 1. finishComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishComment : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. finishComment : changed conditional boundary → NO_COVERAGE
6. finishComment : negated conditional → NO_COVERAGE
7. finishComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishComment : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishComment : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishComment : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            } else if (c >= 0xD800) {  // high-range, surrogates etc
1349 12 1. finishComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishComment : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE
5. finishComment : changed conditional boundary → NO_COVERAGE
6. finishComment : negated conditional → NO_COVERAGE
7. finishComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishComment : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. finishComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishComment : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
12. finishComment : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (c < 0xE000) {
1350
                    // if ok, returns second surrogate; otherwise exception
1351
                    char d = checkSurrogate(c);
1352 5 1. finishComment : Changed increment from 1 to -1 → NO_COVERAGE
2. finishComment : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishComment : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishComment : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishComment : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    outputBuffer[outPtr++] = c;
1353 7 1. finishComment : changed conditional boundary → NO_COVERAGE
2. finishComment : negated conditional → NO_COVERAGE
3. finishComment : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishComment : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. finishComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishComment : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (outPtr >= outputBuffer.length) {
1354 1 1. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                        outputBuffer = _textBuilder.finishCurrentSegment();
1355 5 1. finishComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishComment : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                        outPtr = 0;
1356
                    }
1357
                    c = d;
1358 12 1. finishComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishComment : Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE
5. finishComment : changed conditional boundary → NO_COVERAGE
6. finishComment : negated conditional → NO_COVERAGE
7. finishComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishComment : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishComment : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishComment : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                } else if (c >= 0xFFFE) {
1359
                    c = handleInvalidXmlChar(c);
1360
                }
1361
            }
1362
            // We know there's room for one more:
1363 5 1. finishComment : Changed increment from 1 to -1 → NO_COVERAGE
2. finishComment : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishComment : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishComment : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishComment : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
            outputBuffer[outPtr++] = c;
1364
        }
1365 2 1. finishComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED
2. finishComment : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
        _textBuilder.setCurrentLength(outPtr);
1366
    }
1367
1368
    @Override
1369
    protected final void finishPI() throws XMLStreamException
1370
    {
1371 1 1. finishPI : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → SURVIVED
        final int[] TYPES = sCharTypes.OTHER_CHARS;
1372 1 1. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
        final char[] inputBuffer = _inputBuffer;
1373 1 1. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED
        char[] outputBuffer = _textBuilder.resetWithEmpty();
1374 5 1. finishPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. finishPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. finishPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. finishPI : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. finishPI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        int outPtr = 0;
1375
1376
        main_loop:
1377
        while (true) {
1378
            char c;
1379
1380
            // Then the tight ascii non-funny-char loop:
1381
            ascii_loop:
1382
            while (true) {
1383 1 1. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                int ptr = _inputPtr;
1384 8 1. finishPI : changed conditional boundary → SURVIVED
2. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
3. finishPI : changed conditional boundary to IF_ICMPNE → SURVIVED
4. finishPI : negated conditional → KILLED
5. finishPI : changed conditional boundary to IF_ICMPEQ → KILLED
6. finishPI : changed conditional boundary to IF_ICMPGE → KILLED
7. finishPI : changed conditional boundary to IF_ICMPGT → KILLED
8. finishPI : changed conditional boundary to IF_ICMPGT → KILLED
                if (ptr >= _inputEnd) {
1385 1 1. finishPI : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
1386 1 1. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                    ptr = _inputPtr;
1387
                }
1388 7 1. finishPI : changed conditional boundary → SURVIVED
2. finishPI : changed conditional boundary to IF_ICMPNE → SURVIVED
3. finishPI : negated conditional → KILLED
4. finishPI : changed conditional boundary to IF_ICMPEQ → KILLED
5. finishPI : changed conditional boundary to IF_ICMPGE → KILLED
6. finishPI : changed conditional boundary to IF_ICMPGT → KILLED
7. finishPI : changed conditional boundary to IF_ICMPGT → KILLED
                if (outPtr >= outputBuffer.length) {
1389 1 1. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                    outputBuffer = _textBuilder.finishCurrentSegment();
1390 5 1. finishPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishPI : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishPI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    outPtr = 0;
1391
                }
1392 1 1. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
                int max = _inputEnd;
1393
                {
1394 2 1. finishPI : Replaced operate with second operand → KILLED
2. finishPI : Replaced operate with second operand → KILLED
                    int max2 = ptr + (outputBuffer.length - outPtr);
1395 7 1. finishPI : changed conditional boundary → SURVIVED
2. finishPI : negated conditional → SURVIVED
3. finishPI : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. finishPI : changed conditional boundary to IF_ICMPGT → SURVIVED
5. finishPI : changed conditional boundary to IF_ICMPGT → SURVIVED
6. finishPI : changed conditional boundary to IF_ICMPLT → SURVIVED
7. finishPI : changed conditional boundary to IF_ICMPNE → SURVIVED
                    if (max2 < max) {
1396
                        max = max2;
1397
                    }
1398
                }
1399 7 1. finishPI : changed conditional boundary → SURVIVED
2. finishPI : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. finishPI : changed conditional boundary to IF_ICMPGT → SURVIVED
4. finishPI : changed conditional boundary to IF_ICMPGT → SURVIVED
5. finishPI : negated conditional → TIMED_OUT
6. finishPI : changed conditional boundary to IF_ICMPLT → TIMED_OUT
7. finishPI : changed conditional boundary to IF_ICMPNE → TIMED_OUT
                while (ptr < max) {
1400 5 1. finishPI : Changed increment from 1 to -1 → KILLED
2. finishPI : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. finishPI : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. finishPI : UOI Mutator: Removed unary increment of local variable → KILLED
5. finishPI : UOI Mutator: Reversed increment of local variable → KILLED
                    c = inputBuffer[ptr++];
1401 11 1. finishPI : changed conditional boundary → SURVIVED
2. finishPI : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. finishPI : changed conditional boundary to IF_ICMPGE → SURVIVED
4. finishPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. finishPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. finishPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. finishPI : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
8. finishPI : negated conditional → KILLED
9. finishPI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. finishPI : changed conditional boundary to IF_ICMPLT → KILLED
11. finishPI : changed conditional boundary to IF_ICMPNE → KILLED
                    if (c <= 0xFF) {
1402 6 1. finishPI : changed conditional boundary to IFLE → SURVIVED
2. finishPI : changed conditional boundary to IFLT → SURVIVED
3. finishPI : negated conditional → KILLED
4. finishPI : changed conditional boundary to IFGE → KILLED
5. finishPI : changed conditional boundary to IFGT → KILLED
6. finishPI : changed conditional boundary to IFNE → KILLED
                        if (TYPES[c] != 0) {
1403 1 1. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                            _inputPtr = ptr;
1404
                            break ascii_loop;
1405
                        }
1406 12 1. finishPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishPI : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. finishPI : changed conditional boundary → NO_COVERAGE
6. finishPI : negated conditional → NO_COVERAGE
7. finishPI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishPI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishPI : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishPI : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    } else if (c >= 0xD800) { // surrogates and 0xFFFE/0xFFFF
1407 1 1. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        _inputPtr = ptr;
1408
                        break ascii_loop;
1409
                    }
1410 5 1. finishPI : Changed increment from 1 to -1 → KILLED
2. finishPI : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. finishPI : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. finishPI : UOI Mutator: Removed unary increment of local variable → KILLED
5. finishPI : UOI Mutator: Reversed increment of local variable → KILLED
                    outputBuffer[outPtr++] = c;
1411
                }
1412 1 1. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                _inputPtr = ptr;
1413
            }
1414
1415 11 1. finishPI : changed conditional boundary → SURVIVED
2. finishPI : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. finishPI : changed conditional boundary to IF_ICMPGE → SURVIVED
4. finishPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. finishPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. finishPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. finishPI : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
8. finishPI : negated conditional → KILLED
9. finishPI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. finishPI : changed conditional boundary to IF_ICMPLT → KILLED
11. finishPI : changed conditional boundary to IF_ICMPNE → KILLED
            if (c <= 0xFF) {
1416
                switch (TYPES[c]) {
1417
                case XmlCharTypes.CT_WS_CR:
1418
                    {
1419 9 1. finishPI : changed conditional boundary → NO_COVERAGE
2. finishPI : negated conditional → NO_COVERAGE
3. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. finishPI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. finishPI : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. finishPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. finishPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. finishPI : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (_inputPtr >= _inputEnd) {
1420 1 1. finishPI : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
1421
                        }
1422 12 1. finishPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishPI : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. finishPI : negated conditional → NO_COVERAGE
6. finishPI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. finishPI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishPI : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishPI : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                        if (inputBuffer[_inputPtr] == CHAR_LF) {
1423 8 1. finishPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishPI : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishPI : Replaced operate with second operand → NO_COVERAGE
6. finishPI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ++_inputPtr;
1424
                        }
1425 1 1. finishPI : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                        markLF();
1426 5 1. finishPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishPI : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. finishPI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                        c = '\n';
1427
                    }
1428
                    break;
1429
                case XmlCharTypes.CT_WS_LF:
1430 1 1. finishPI : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                    markLF();
1431
                    break;
1432
                case XmlCharTypes.CT_QMARK: // '?>'?
1433 9 1. finishPI : changed conditional boundary → SURVIVED
2. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. finishPI : changed conditional boundary to IF_ICMPNE → SURVIVED
5. finishPI : negated conditional → KILLED
6. finishPI : changed conditional boundary to IF_ICMPEQ → KILLED
7. finishPI : changed conditional boundary to IF_ICMPGE → KILLED
8. finishPI : changed conditional boundary to IF_ICMPGT → KILLED
9. finishPI : changed conditional boundary to IF_ICMPGT → KILLED
                    if (_inputPtr >= _inputEnd) {
1434 1 1. finishPI : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                        loadMoreGuaranteed();
1435
                    }
1436 13 1. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishPI : changed conditional boundary to IF_ICMPGT → SURVIVED
4. finishPI : changed conditional boundary to IF_ICMPGT → SURVIVED
5. finishPI : changed conditional boundary to IF_ICMPLT → SURVIVED
6. finishPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR
7. finishPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. finishPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. finishPI : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
10. finishPI : negated conditional → KILLED
11. finishPI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. finishPI : changed conditional boundary to IF_ICMPEQ → KILLED
13. finishPI : changed conditional boundary to IF_ICMPGE → KILLED
                    if (_inputBuffer[_inputPtr] == '>') {
1437 8 1. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. finishPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. finishPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. finishPI : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. finishPI : Replaced operate with second operand → KILLED
8. finishPI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                        ++_inputPtr;
1438
                        break main_loop;
1439
                    }
1440
                    break;
1441
                // default:
1442
                    // Other types are not important here...
1443
                }
1444 12 1. finishPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishPI : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. finishPI : changed conditional boundary → NO_COVERAGE
6. finishPI : negated conditional → NO_COVERAGE
7. finishPI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishPI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishPI : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishPI : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            } else if (c >= 0xD800) {  // high-range, surrogates etc
1445 12 1. finishPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishPI : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE
5. finishPI : changed conditional boundary → NO_COVERAGE
6. finishPI : negated conditional → NO_COVERAGE
7. finishPI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishPI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. finishPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishPI : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
12. finishPI : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (c < 0xE000) {
1446
                    // if ok, returns second surrogate; otherwise exception
1447
                    char d = checkSurrogate(c);
1448 5 1. finishPI : Changed increment from 1 to -1 → NO_COVERAGE
2. finishPI : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishPI : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishPI : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishPI : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    outputBuffer[outPtr++] = c;
1449 7 1. finishPI : changed conditional boundary → NO_COVERAGE
2. finishPI : negated conditional → NO_COVERAGE
3. finishPI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishPI : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. finishPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishPI : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (outPtr >= outputBuffer.length) {
1450 1 1. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                        outputBuffer = _textBuilder.finishCurrentSegment();
1451 5 1. finishPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishPI : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishPI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                        outPtr = 0;
1452
                    }
1453
                    c = d;
1454 12 1. finishPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishPI : Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE
5. finishPI : changed conditional boundary → NO_COVERAGE
6. finishPI : negated conditional → NO_COVERAGE
7. finishPI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishPI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishPI : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishPI : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                } else if (c >= 0xFFFE) {
1455
                    c = handleInvalidXmlChar(c);
1456
                }
1457
            }
1458
            // We know there's room for one more:
1459 5 1. finishPI : Changed increment from 1 to -1 → NO_COVERAGE
2. finishPI : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishPI : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishPI : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishPI : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
            outputBuffer[outPtr++] = c;
1460
        }
1461 2 1. finishPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED
2. finishPI : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
        _textBuilder.setCurrentLength(outPtr);
1462
    }
1463
1464
    @Override
1465
    protected final void finishDTD(boolean copyContents) throws XMLStreamException
1466
    {
1467 7 1. finishDTD : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED
2. finishDTD : changed conditional boundary to IFLE → SURVIVED
3. finishDTD : changed conditional boundary to IFLT → SURVIVED
4. finishDTD : negated conditional → KILLED
5. finishDTD : changed conditional boundary to IFGE → KILLED
6. finishDTD : changed conditional boundary to IFGT → KILLED
7. finishDTD : changed conditional boundary to IFNE → KILLED
        char[] outputBuffer = copyContents ?
1468
            _textBuilder.resetWithEmpty() : null;
1469 5 1. finishDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. finishDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. finishDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. finishDTD : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. finishDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        int outPtr = 0;
1470
1471 1 1. finishDTD : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldDTD_CHARS mutated with null check on object → SURVIVED
        final int[] TYPES = sCharTypes.DTD_CHARS;
1472 5 1. finishDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. finishDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. finishDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. finishDTD : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. finishDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        boolean inDecl = false; // in declaration/directive?
1473 5 1. finishDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. finishDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. finishDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. finishDTD : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. finishDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        int quoteChar = 0; // inside quoted string?
1474
1475
        main_loop:
1476
        while (true) {
1477
            char c;
1478
1479
            /* First we'll have a quickie loop for speeding through
1480
             * uneventful chars...
1481
             */
1482
            ascii_loop:
1483
            while (true) {
1484 1 1. finishDTD : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                int ptr = _inputPtr;
1485 8 1. finishDTD : changed conditional boundary → SURVIVED
2. finishDTD : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
3. finishDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
4. finishDTD : negated conditional → KILLED
5. finishDTD : changed conditional boundary to IF_ICMPEQ → KILLED
6. finishDTD : changed conditional boundary to IF_ICMPGE → KILLED
7. finishDTD : changed conditional boundary to IF_ICMPGT → KILLED
8. finishDTD : changed conditional boundary to IF_ICMPGT → KILLED
                if (ptr >= _inputEnd) {
1486 1 1. finishDTD : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
1487 1 1. finishDTD : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                    ptr = _inputPtr;
1488
                }
1489 1 1. finishDTD : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
                int max = _inputEnd;
1490 1 1. finishDTD : negated conditional → KILLED
                if (outputBuffer != null) {
1491 7 1. finishDTD : changed conditional boundary → SURVIVED
2. finishDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
3. finishDTD : negated conditional → KILLED
4. finishDTD : changed conditional boundary to IF_ICMPEQ → KILLED
5. finishDTD : changed conditional boundary to IF_ICMPGE → KILLED
6. finishDTD : changed conditional boundary to IF_ICMPGT → KILLED
7. finishDTD : changed conditional boundary to IF_ICMPGT → KILLED
                    if (outPtr >= outputBuffer.length) {
1492 1 1. finishDTD : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                        outputBuffer = _textBuilder.finishCurrentSegment();
1493 5 1. finishDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishDTD : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                        outPtr = 0;
1494
                    }
1495
                    {
1496 2 1. finishDTD : Replaced operate with second operand → KILLED
2. finishDTD : Replaced operate with second operand → KILLED
                        int max2 = ptr + (outputBuffer.length - outPtr);
1497 7 1. finishDTD : changed conditional boundary → SURVIVED
2. finishDTD : negated conditional → SURVIVED
3. finishDTD : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. finishDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
5. finishDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
6. finishDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
7. finishDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
                        if (max2 < max) {
1498
                            max = max2;
1499
                        }
1500
                    }
1501
                }
1502 7 1. finishDTD : changed conditional boundary → SURVIVED
2. finishDTD : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. finishDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
4. finishDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
5. finishDTD : negated conditional → TIMED_OUT
6. finishDTD : changed conditional boundary to IF_ICMPLT → TIMED_OUT
7. finishDTD : changed conditional boundary to IF_ICMPNE → TIMED_OUT
                while (ptr < max) {
1503 6 1. finishDTD : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. finishDTD : UOI Mutator: Added unary decrement 1 -> 0 to local variable → TIMED_OUT
3. finishDTD : UOI Mutator: Removed unary increment of local variable → TIMED_OUT
4. finishDTD : Changed increment from 1 to -1 → KILLED
5. finishDTD : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
6. finishDTD : UOI Mutator: Reversed increment of local variable → KILLED
                    c = _inputBuffer[ptr++];
1504 11 1. finishDTD : changed conditional boundary → SURVIVED
2. finishDTD : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. finishDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
4. finishDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. finishDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. finishDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. finishDTD : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
8. finishDTD : negated conditional → KILLED
9. finishDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. finishDTD : changed conditional boundary to IF_ICMPLT → KILLED
11. finishDTD : changed conditional boundary to IF_ICMPNE → KILLED
                    if (c <= 0xFF) {
1505 6 1. finishDTD : changed conditional boundary to IFLE → SURVIVED
2. finishDTD : changed conditional boundary to IFLT → SURVIVED
3. finishDTD : negated conditional → KILLED
4. finishDTD : changed conditional boundary to IFGE → KILLED
5. finishDTD : changed conditional boundary to IFGT → KILLED
6. finishDTD : changed conditional boundary to IFNE → KILLED
                        if (TYPES[c] != 0) {
1506 1 1. finishDTD : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                            _inputPtr = ptr;
1507
                            break ascii_loop;
1508
                        }
1509 12 1. finishDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishDTD : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. finishDTD : changed conditional boundary → NO_COVERAGE
6. finishDTD : negated conditional → NO_COVERAGE
7. finishDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishDTD : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishDTD : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishDTD : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishDTD : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishDTD : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    } else if (c >= 0xD800) { // surrogates and 0xFFFE/0xFFFF
1510 1 1. finishDTD : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        _inputPtr = ptr;
1511
                        break ascii_loop;
1512
                    }
1513 1 1. finishDTD : negated conditional → KILLED
                    if (outputBuffer != null) {
1514 5 1. finishDTD : Changed increment from 1 to -1 → KILLED
2. finishDTD : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. finishDTD : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. finishDTD : UOI Mutator: Removed unary increment of local variable → KILLED
5. finishDTD : UOI Mutator: Reversed increment of local variable → KILLED
                        outputBuffer[outPtr++] = c;
1515
                    }
1516
                }
1517 1 1. finishDTD : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                _inputPtr = ptr;
1518
            }
1519
1520 11 1. finishDTD : changed conditional boundary → SURVIVED
2. finishDTD : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. finishDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
4. finishDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. finishDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. finishDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. finishDTD : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
8. finishDTD : negated conditional → KILLED
9. finishDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. finishDTD : changed conditional boundary to IF_ICMPLT → KILLED
11. finishDTD : changed conditional boundary to IF_ICMPNE → KILLED
            if (c <= 0xFF) {
1521
                switch (TYPES[c]) {
1522
                case XmlCharTypes.CT_INVALID:
1523
                    c = handleInvalidXmlChar(c);
1524
                case XmlCharTypes.CT_WS_CR:
1525
                    {
1526 9 1. finishDTD : changed conditional boundary → NO_COVERAGE
2. finishDTD : negated conditional → NO_COVERAGE
3. finishDTD : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. finishDTD : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. finishDTD : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. finishDTD : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. finishDTD : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. finishDTD : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. finishDTD : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (_inputPtr >= _inputEnd) {
1527 1 1. finishDTD : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
1528
                        }
1529 13 1. finishDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishDTD : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. finishDTD : negated conditional → NO_COVERAGE
6. finishDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishDTD : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. finishDTD : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. finishDTD : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. finishDTD : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. finishDTD : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishDTD : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. finishDTD : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                        if (_inputBuffer[_inputPtr] == '\n') {
1530 8 1. finishDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishDTD : Replaced operate with second operand → NO_COVERAGE
6. finishDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishDTD : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. finishDTD : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ++_inputPtr;
1531
                        }
1532 1 1. finishDTD : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                        markLF();
1533
                    }
1534 5 1. finishDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishDTD : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. finishDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    c = '\n';
1535
                    break;
1536
                case XmlCharTypes.CT_WS_LF:
1537 1 1. finishDTD : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                    markLF();
1538
                    break;
1539
                    
1540
                case XmlCharTypes.CT_DTD_QUOTE: // apos or quot
1541 6 1. finishDTD : negated conditional → NO_COVERAGE
2. finishDTD : changed conditional boundary to IFEQ → NO_COVERAGE
3. finishDTD : changed conditional boundary to IFGE → NO_COVERAGE
4. finishDTD : changed conditional boundary to IFGT → NO_COVERAGE
5. finishDTD : changed conditional boundary to IFLE → NO_COVERAGE
6. finishDTD : changed conditional boundary to IFLT → NO_COVERAGE
                    if (quoteChar == 0) {
1542
                        quoteChar = c;
1543
                    } else {
1544 6 1. finishDTD : negated conditional → NO_COVERAGE
2. finishDTD : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
3. finishDTD : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
4. finishDTD : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
5. finishDTD : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishDTD : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                        if (quoteChar == c) {
1545 5 1. finishDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishDTD : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                            quoteChar = 0;
1546
                        }
1547
                    }
1548
                    break;
1549
1550
                case XmlCharTypes.CT_DTD_LT:
1551 6 1. finishDTD : negated conditional → SURVIVED
2. finishDTD : changed conditional boundary to IFEQ → SURVIVED
3. finishDTD : changed conditional boundary to IFGE → SURVIVED
4. finishDTD : changed conditional boundary to IFGT → SURVIVED
5. finishDTD : changed conditional boundary to IFLE → SURVIVED
6. finishDTD : changed conditional boundary to IFLT → SURVIVED
                    if (!inDecl) {
1552 5 1. finishDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR
2. finishDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. finishDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. finishDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. finishDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                        inDecl = true;
1553
                    }
1554
                    break;
1555
                case XmlCharTypes.CT_DTD_GT:
1556 6 1. finishDTD : changed conditional boundary to IFGT → SURVIVED
2. finishDTD : changed conditional boundary to IFLT → SURVIVED
3. finishDTD : negated conditional → KILLED
4. finishDTD : changed conditional boundary to IFEQ → KILLED
5. finishDTD : changed conditional boundary to IFGE → KILLED
6. finishDTD : changed conditional boundary to IFLE → KILLED
                    if (quoteChar == 0) {
1557 5 1. finishDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. finishDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. finishDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. finishDTD : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. finishDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                        inDecl = false;
1558
                    }
1559
                    break;
1560
                case XmlCharTypes.CT_DTD_RBRACKET:
1561 12 1. finishDTD : changed conditional boundary to IFGT → SURVIVED
2. finishDTD : changed conditional boundary to IFGT → SURVIVED
3. finishDTD : changed conditional boundary to IFLT → SURVIVED
4. finishDTD : changed conditional boundary to IFLT → SURVIVED
5. finishDTD : negated conditional → KILLED
6. finishDTD : negated conditional → KILLED
7. finishDTD : changed conditional boundary to IFEQ → KILLED
8. finishDTD : changed conditional boundary to IFEQ → KILLED
9. finishDTD : changed conditional boundary to IFGE → KILLED
10. finishDTD : changed conditional boundary to IFGE → KILLED
11. finishDTD : changed conditional boundary to IFLE → KILLED
12. finishDTD : changed conditional boundary to IFLE → KILLED
                    if (!inDecl && quoteChar == 0) {
1562
                        break main_loop;
1563
                    }
1564
                    break;
1565
                // default:
1566
                    // Other types are not important here...
1567
                }
1568 12 1. finishDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishDTD : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. finishDTD : changed conditional boundary → NO_COVERAGE
6. finishDTD : negated conditional → NO_COVERAGE
7. finishDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishDTD : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishDTD : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishDTD : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishDTD : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishDTD : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            } else if (c >= 0xD800) {  // high-range, surrogates etc
1569 12 1. finishDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishDTD : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE
5. finishDTD : changed conditional boundary → NO_COVERAGE
6. finishDTD : negated conditional → NO_COVERAGE
7. finishDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishDTD : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishDTD : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. finishDTD : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishDTD : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
12. finishDTD : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (c < 0xE000) {
1570
                    // if ok, returns second surrogate; otherwise exception
1571
                    char d = checkSurrogate(c);
1572 1 1. finishDTD : negated conditional → NO_COVERAGE
                    if (outputBuffer != null) {
1573 5 1. finishDTD : Changed increment from 1 to -1 → NO_COVERAGE
2. finishDTD : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishDTD : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishDTD : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishDTD : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                        outputBuffer[outPtr++] = c;
1574 7 1. finishDTD : changed conditional boundary → NO_COVERAGE
2. finishDTD : negated conditional → NO_COVERAGE
3. finishDTD : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishDTD : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. finishDTD : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishDTD : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishDTD : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (outPtr >= outputBuffer.length) {
1575 1 1. finishDTD : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                            outputBuffer = _textBuilder.finishCurrentSegment();
1576 5 1. finishDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishDTD : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                            outPtr = 0;
1577
                        }
1578
                    }
1579
                    c = d;
1580 12 1. finishDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishDTD : Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE
5. finishDTD : changed conditional boundary → NO_COVERAGE
6. finishDTD : negated conditional → NO_COVERAGE
7. finishDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishDTD : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishDTD : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishDTD : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishDTD : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishDTD : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                } else if (c >= 0xFFFE) {
1581
                    c = handleInvalidXmlChar(c);
1582
                }
1583
            }
1584
1585 1 1. finishDTD : negated conditional → KILLED
            if (outputBuffer != null) { // has room for one more
1586 5 1. finishDTD : Changed increment from 1 to -1 → KILLED
2. finishDTD : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. finishDTD : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. finishDTD : UOI Mutator: Removed unary increment of local variable → KILLED
5. finishDTD : UOI Mutator: Reversed increment of local variable → KILLED
                outputBuffer[outPtr++] = c;
1587
            }
1588
        }
1589 1 1. finishDTD : negated conditional → KILLED
        if (outputBuffer != null) {
1590 2 1. finishDTD : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED
2. finishDTD : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
            _textBuilder.setCurrentLength(outPtr);
1591
        }
1592
1593
        // but still need to match the '>'...
1594 5 1. finishDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. finishDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. finishDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. finishDTD : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. finishDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        char c = skipInternalWs(false, null);
1595 11 1. finishDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
2. finishDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR
3. finishDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. finishDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. finishDTD : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
6. finishDTD : negated conditional → KILLED
7. finishDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. finishDTD : changed conditional boundary to IF_ICMPGT → KILLED
9. finishDTD : changed conditional boundary to IF_ICMPGT → KILLED
10. finishDTD : changed conditional boundary to IF_ICMPLT → KILLED
11. finishDTD : changed conditional boundary to IF_ICMPNE → KILLED
        if (c != '>') {
1596 1 1. finishDTD : removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE
            throwUnexpectedChar(c, " expected '>' after the internal subset");
1597
        }
1598
    }
1599
1600
    @Override
1601
    protected final void finishCData() throws XMLStreamException
1602
    {
1603 1 1. finishCData : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → SURVIVED
        final int[] TYPES = sCharTypes.OTHER_CHARS;
1604 1 1. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
        final char[] inputBuffer = _inputBuffer;
1605 1 1. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED
        char[] outputBuffer = _textBuilder.resetWithEmpty();
1606 5 1. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. finishCData : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        int outPtr = 0;
1607
1608
        /* At this point, space (if any) has been skipped, and we are
1609
         * to parse and store the contents
1610
         */
1611
        main_loop:
1612
        while (true) {
1613
            char c;
1614
            // Then the tight ascii non-funny-char loop:
1615
            ascii_loop:
1616
            while (true) {
1617 1 1. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                int ptr = _inputPtr;
1618 8 1. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
2. finishCData : changed conditional boundary to IF_ICMPNE → SURVIVED
3. finishCData : changed conditional boundary → TIMED_OUT
4. finishCData : negated conditional → KILLED
5. finishCData : changed conditional boundary to IF_ICMPEQ → KILLED
6. finishCData : changed conditional boundary to IF_ICMPGE → KILLED
7. finishCData : changed conditional boundary to IF_ICMPGT → KILLED
8. finishCData : changed conditional boundary to IF_ICMPGT → KILLED
                if (ptr >= _inputEnd) {
1619 1 1. finishCData : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → TIMED_OUT
                    loadMoreGuaranteed();
1620 1 1. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                    ptr = _inputPtr;
1621
                }
1622 7 1. finishCData : changed conditional boundary → SURVIVED
2. finishCData : changed conditional boundary to IF_ICMPNE → SURVIVED
3. finishCData : negated conditional → KILLED
4. finishCData : changed conditional boundary to IF_ICMPEQ → KILLED
5. finishCData : changed conditional boundary to IF_ICMPGE → KILLED
6. finishCData : changed conditional boundary to IF_ICMPGT → KILLED
7. finishCData : changed conditional boundary to IF_ICMPGT → KILLED
                if (outPtr >= outputBuffer.length) {
1623 1 1. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                    outputBuffer = _textBuilder.finishCurrentSegment();
1624 5 1. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCData : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    outPtr = 0;
1625
                }
1626 1 1. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
                int max = _inputEnd;
1627
                {
1628 2 1. finishCData : Replaced operate with second operand → KILLED
2. finishCData : Replaced operate with second operand → KILLED
                    int max2 = ptr + (outputBuffer.length - outPtr);
1629 7 1. finishCData : changed conditional boundary → SURVIVED
2. finishCData : changed conditional boundary to IF_ICMPGT → SURVIVED
3. finishCData : changed conditional boundary to IF_ICMPGT → SURVIVED
4. finishCData : changed conditional boundary to IF_ICMPNE → SURVIVED
5. finishCData : negated conditional → KILLED
6. finishCData : changed conditional boundary to IF_ICMPEQ → KILLED
7. finishCData : changed conditional boundary to IF_ICMPLT → KILLED
                    if (max2 < max) {
1630
                        max = max2;
1631
                    }
1632
                }
1633 7 1. finishCData : changed conditional boundary to IF_ICMPEQ → SURVIVED
2. finishCData : negated conditional → TIMED_OUT
3. finishCData : changed conditional boundary to IF_ICMPLT → TIMED_OUT
4. finishCData : changed conditional boundary to IF_ICMPNE → TIMED_OUT
5. finishCData : changed conditional boundary → KILLED
6. finishCData : changed conditional boundary to IF_ICMPGT → KILLED
7. finishCData : changed conditional boundary to IF_ICMPGT → KILLED
                while (ptr < max) {
1634 5 1. finishCData : Changed increment from 1 to -1 → KILLED
2. finishCData : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. finishCData : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. finishCData : UOI Mutator: Removed unary increment of local variable → KILLED
5. finishCData : UOI Mutator: Reversed increment of local variable → KILLED
                    c = inputBuffer[ptr++];
1635 11 1. finishCData : changed conditional boundary → SURVIVED
2. finishCData : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. finishCData : changed conditional boundary to IF_ICMPGE → SURVIVED
4. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. finishCData : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
8. finishCData : negated conditional → KILLED
9. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. finishCData : changed conditional boundary to IF_ICMPLT → KILLED
11. finishCData : changed conditional boundary to IF_ICMPNE → KILLED
                    if (c <= 0xFF) {
1636 6 1. finishCData : changed conditional boundary to IFLE → SURVIVED
2. finishCData : changed conditional boundary to IFLT → SURVIVED
3. finishCData : negated conditional → KILLED
4. finishCData : changed conditional boundary to IFGE → KILLED
5. finishCData : changed conditional boundary to IFGT → KILLED
6. finishCData : changed conditional boundary to IFNE → KILLED
                        if (TYPES[c] != 0) {
1637 1 1. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                            _inputPtr = ptr;
1638
                            break ascii_loop;
1639
                        }
1640 12 1. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCData : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. finishCData : changed conditional boundary → NO_COVERAGE
6. finishCData : negated conditional → NO_COVERAGE
7. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    } else if (c >= 0xD800) { // surrogates and 0xFFFE/0xFFFF
1641 1 1. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        _inputPtr = ptr;
1642
                        break ascii_loop;
1643
                    }
1644 5 1. finishCData : Changed increment from 1 to -1 → KILLED
2. finishCData : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. finishCData : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. finishCData : UOI Mutator: Removed unary increment of local variable → KILLED
5. finishCData : UOI Mutator: Reversed increment of local variable → KILLED
                    outputBuffer[outPtr++] = c;
1645
                }
1646 1 1. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                _inputPtr = ptr;
1647
            }
1648
            // And then exceptions:
1649 11 1. finishCData : changed conditional boundary → SURVIVED
2. finishCData : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. finishCData : changed conditional boundary to IF_ICMPGE → SURVIVED
4. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. finishCData : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
8. finishCData : negated conditional → KILLED
9. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. finishCData : changed conditional boundary to IF_ICMPLT → KILLED
11. finishCData : changed conditional boundary to IF_ICMPNE → KILLED
            if (c <= 0xFF) {
1650
                switch (TYPES[c]) {
1651
                case XmlCharTypes.CT_INVALID:
1652
                    c = handleInvalidXmlChar(c);
1653
                case XmlCharTypes.CT_WS_CR:
1654
                    {
1655 9 1. finishCData : changed conditional boundary → NO_COVERAGE
2. finishCData : negated conditional → NO_COVERAGE
3. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. finishCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. finishCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. finishCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. finishCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. finishCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (_inputPtr >= _inputEnd) {
1656 1 1. finishCData : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
1657
                        }
1658 12 1. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCData : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. finishCData : negated conditional → NO_COVERAGE
6. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. finishCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishCData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                        if (inputBuffer[_inputPtr] == '\n') {
1659 8 1. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishCData : Replaced operate with second operand → NO_COVERAGE
6. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ++_inputPtr;
1660
                        }
1661 1 1. finishCData : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                        markLF();
1662
                    }
1663 5 1. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCData : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    c = '\n';
1664
                    break;
1665
                case XmlCharTypes.CT_WS_LF:
1666 1 1. finishCData : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                    markLF();
1667
                    break;
1668
                case XmlCharTypes.CT_RBRACKET: // close ']]>' marker?
1669
                    /* Ok: let's just parse all consequtive right brackets,
1670
                     * and see if followed by greater-than char. This because
1671
                     * we can only push back at most one char at a time, and
1672
                     * thus can't easily just check a subset
1673
                     */
1674 5 1. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. finishCData : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                    int count = 0; // ignore first bracket
1675
                    char d;
1676
 
1677
                    do {
1678 9 1. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
3. finishCData : changed conditional boundary to IF_ICMPNE → SURVIVED
4. finishCData : changed conditional boundary → KILLED
5. finishCData : negated conditional → KILLED
6. finishCData : changed conditional boundary to IF_ICMPEQ → KILLED
7. finishCData : changed conditional boundary to IF_ICMPGE → KILLED
8. finishCData : changed conditional boundary to IF_ICMPGT → KILLED
9. finishCData : changed conditional boundary to IF_ICMPGT → KILLED
                        if (_inputPtr >= _inputEnd) {
1679 1 1. finishCData : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → KILLED
                            loadMoreGuaranteed();
1680
                        }
1681 2 1. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                        d = _inputBuffer[_inputPtr];
1682 11 1. finishCData : changed conditional boundary to IF_ICMPGE → SURVIVED
2. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. finishCData : Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED
6. finishCData : negated conditional → KILLED
7. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. finishCData : changed conditional boundary to IF_ICMPGT → KILLED
9. finishCData : changed conditional boundary to IF_ICMPGT → KILLED
10. finishCData : changed conditional boundary to IF_ICMPLT → KILLED
11. finishCData : changed conditional boundary to IF_ICMPNE → KILLED
                        if (d != ']') {
1683
                            break;
1684
                        }
1685 8 1. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. finishCData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. finishCData : Replaced operate with second operand → KILLED
8. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                        ++_inputPtr;
1686 5 1. finishCData : Changed increment from 1 to -1 → KILLED
2. finishCData : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. finishCData : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. finishCData : UOI Mutator: Removed unary increment of local variable → KILLED
5. finishCData : UOI Mutator: Reversed increment of local variable → KILLED
                        ++count;
1687
                    } while (true);
1688
                    
1689
                    // Was the marker found?
1690 33 1. finishCData : changed conditional boundary to IF_ICMPGT → SURVIVED
2. finishCData : changed conditional boundary to IF_ICMPGT → SURVIVED
3. finishCData : changed conditional boundary to IF_ICMPGT → SURVIVED
4. finishCData : changed conditional boundary to IF_ICMPGT → SURVIVED
5. finishCData : changed conditional boundary to IF_ICMPLT → SURVIVED
6. finishCData : changed conditional boundary to IF_ICMPNE → SURVIVED
7. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR
8. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
10. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
11. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
12. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
13. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
14. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
15. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
16. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
17. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
18. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
19. finishCData : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
20. finishCData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
21. finishCData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
22. finishCData : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
23. finishCData : changed conditional boundary → KILLED
24. finishCData : negated conditional → KILLED
25. finishCData : negated conditional → KILLED
26. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
27. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
28. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
29. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
30. finishCData : changed conditional boundary to IF_ICMPEQ → KILLED
31. finishCData : changed conditional boundary to IF_ICMPEQ → KILLED
32. finishCData : changed conditional boundary to IF_ICMPGE → KILLED
33. finishCData : changed conditional boundary to IF_ICMPGE → KILLED
                    boolean ok = (d == '>' && count >= 1);
1691 6 1. finishCData : changed conditional boundary to IFLE → SURVIVED
2. finishCData : changed conditional boundary to IFLT → SURVIVED
3. finishCData : negated conditional → KILLED
4. finishCData : changed conditional boundary to IFGE → KILLED
5. finishCData : changed conditional boundary to IFGT → KILLED
6. finishCData : changed conditional boundary to IFNE → KILLED
                    if (ok) {
1692 5 1. finishCData : UOI Mutator: Added unary decrement -1 -> -2 to local variable → SURVIVED
2. finishCData : Changed increment from -1 to 1 → KILLED
3. finishCData : UOI Mutator: Added unary increment -1 -> 0 to local variable → KILLED
4. finishCData : UOI Mutator: Removed unary increment of local variable → KILLED
5. finishCData : UOI Mutator: Reversed increment of local variable → KILLED
                        --count;
1693
                    }
1694
                    // Brackets to copy to output?
1695 12 1. finishCData : Changed increment from -1 to 1 → SURVIVED
2. finishCData : changed conditional boundary to IFEQ → SURVIVED
3. finishCData : changed conditional boundary to IFGE → SURVIVED
4. finishCData : UOI Mutator: Added unary decrement -1 -> -2 to local variable → SURVIVED
5. finishCData : UOI Mutator: Added unary increment -1 -> 0 to local variable → SURVIVED
6. finishCData : UOI Mutator: Removed unary increment of local variable → SURVIVED
7. finishCData : UOI Mutator: Reversed increment of local variable → SURVIVED
8. finishCData : negated conditional → MEMORY_ERROR
9. finishCData : changed conditional boundary to IFGT → MEMORY_ERROR
10. finishCData : changed conditional boundary → KILLED
11. finishCData : changed conditional boundary to IFLT → KILLED
12. finishCData : changed conditional boundary to IFNE → KILLED
                    for (; count > 0; --count) {
1696 10 1. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCData : Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE
5. finishCData : Changed increment from 1 to -1 → NO_COVERAGE
6. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCData : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
8. finishCData : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
9. finishCData : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
10. finishCData : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                        outputBuffer[outPtr++] = ']';
1697 7 1. finishCData : changed conditional boundary → NO_COVERAGE
2. finishCData : negated conditional → NO_COVERAGE
3. finishCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. finishCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (outPtr >= outputBuffer.length) {
1698 1 1. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                            outputBuffer = _textBuilder.finishCurrentSegment();
1699 5 1. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCData : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                            outPtr = 0;
1700
                        }
1701
                    }
1702 6 1. finishCData : changed conditional boundary to IFLE → SURVIVED
2. finishCData : changed conditional boundary to IFLT → SURVIVED
3. finishCData : negated conditional → KILLED
4. finishCData : changed conditional boundary to IFGE → KILLED
5. finishCData : changed conditional boundary to IFGT → KILLED
6. finishCData : changed conditional boundary to IFNE → KILLED
                    if (ok) {
1703 8 1. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. finishCData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. finishCData : Replaced operate with second operand → KILLED
8. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                        ++_inputPtr; // to consume '>'
1704
                        break main_loop;
1705
                    }
1706
                    break;
1707
                // default:
1708
                    // Other types are not important here...
1709
                }
1710 12 1. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCData : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. finishCData : changed conditional boundary → NO_COVERAGE
6. finishCData : negated conditional → NO_COVERAGE
7. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            } else if (c >= 0xD800) {  // high-range, surrogates etc
1711 12 1. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCData : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE
5. finishCData : changed conditional boundary → NO_COVERAGE
6. finishCData : negated conditional → NO_COVERAGE
7. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. finishCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishCData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
12. finishCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (c < 0xE000) {
1712
                    // if ok, returns second surrogate; otherwise exception
1713
                    char d = checkSurrogate(c);
1714 5 1. finishCData : Changed increment from 1 to -1 → NO_COVERAGE
2. finishCData : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishCData : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishCData : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishCData : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    outputBuffer[outPtr++] = c;
1715 7 1. finishCData : changed conditional boundary → NO_COVERAGE
2. finishCData : negated conditional → NO_COVERAGE
3. finishCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. finishCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (outPtr >= outputBuffer.length) {
1716 1 1. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                        outputBuffer = _textBuilder.finishCurrentSegment();
1717 5 1. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCData : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                        outPtr = 0;
1718
                    }
1719
                    c = d;
1720 12 1. finishCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCData : Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE
5. finishCData : changed conditional boundary → NO_COVERAGE
6. finishCData : negated conditional → NO_COVERAGE
7. finishCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                } else if (c >= 0xFFFE) {
1721
                    c = handleInvalidXmlChar(c);
1722
                }
1723
            }
1724
            // Ok, can output the char; there's room for one char at least
1725 5 1. finishCData : Changed increment from 1 to -1 → NO_COVERAGE
2. finishCData : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishCData : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishCData : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishCData : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
            outputBuffer[outPtr++] = c;
1726
        }
1727
1728 2 1. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED
2. finishCData : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
        _textBuilder.setCurrentLength(outPtr);
1729
        /* 03-Feb-2009, tatu: To support coalescing mode, may need to
1730
         *   do some extra work
1731
         */
1732 14 1. finishCData : negated conditional → SURVIVED
2. finishCData : negated conditional → SURVIVED
3. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_cfgCoalescing mutated with null check on object → SURVIVED
4. finishCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_entityPending mutated with null check on object → SURVIVED
5. finishCData : changed conditional boundary to IFEQ → SURVIVED
6. finishCData : changed conditional boundary to IFGE → SURVIVED
7. finishCData : changed conditional boundary to IFGE → SURVIVED
8. finishCData : changed conditional boundary to IFGT → SURVIVED
9. finishCData : changed conditional boundary to IFGT → SURVIVED
10. finishCData : changed conditional boundary to IFLE → SURVIVED
11. finishCData : changed conditional boundary to IFLE → SURVIVED
12. finishCData : changed conditional boundary to IFLT → SURVIVED
13. finishCData : changed conditional boundary to IFLT → SURVIVED
14. finishCData : changed conditional boundary to IFNE → SURVIVED
        if (_cfgCoalescing && !_entityPending) {
1733 1 1. finishCData : removed call to com/fasterxml/aalto/in/ReaderScanner::finishCoalescedText → NO_COVERAGE
            finishCoalescedText();
1734
        }
1735
    }
1736
1737
    @Override
1738
    protected final void finishCharacters() throws XMLStreamException
1739
    {
1740
        int outPtr;
1741
        char[] outputBuffer;
1742
1743
        // Ok, so what was the first char / entity?
1744
        {
1745 1 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and fieldmTmpChar mutated with null check on object → SURVIVED
            int c = mTmpChar;
1746 7 1. finishCharacters : changed conditional boundary → SURVIVED
2. finishCharacters : changed conditional boundary to IFGT → SURVIVED
3. finishCharacters : changed conditional boundary to IFNE → SURVIVED
4. finishCharacters : negated conditional → KILLED
5. finishCharacters : changed conditional boundary to IFEQ → KILLED
6. finishCharacters : changed conditional boundary to IFLE → KILLED
7. finishCharacters : changed conditional boundary to IFLT → KILLED
            if (c < 0) { // from entity; can just copy as is
1747 1 1. finishCharacters : removed negation → NO_COVERAGE
                c = -c;
1748 1 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                outputBuffer = _textBuilder.resetWithEmpty();
1749 5 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                outPtr = 0;
1750 12 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
5. finishCharacters : Replaced Shift Right with Shift Left → NO_COVERAGE
6. finishCharacters : negated conditional → NO_COVERAGE
7. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCharacters : changed conditional boundary to IFGE → NO_COVERAGE
9. finishCharacters : changed conditional boundary to IFGT → NO_COVERAGE
10. finishCharacters : changed conditional boundary to IFLE → NO_COVERAGE
11. finishCharacters : changed conditional boundary to IFLT → NO_COVERAGE
12. finishCharacters : changed conditional boundary to IFNE → NO_COVERAGE
                if ((c >> 16) != 0) { // surrogate pair?
1751 6 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE
5. finishCharacters : Replaced operate with second operand → NO_COVERAGE
6. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    c -= 0x10000;
1752
                    /* Note: after resetting the buffer, it's known to have
1753
                     * space for more than 2 chars we need to add
1754
                     */
1755 17 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. finishCharacters : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
8. finishCharacters : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
9. finishCharacters : Changed increment from 1 to -1 → NO_COVERAGE
10. finishCharacters : Replaced Shift Right with Shift Left → NO_COVERAGE
11. finishCharacters : Replaced bitwise OR with AND → NO_COVERAGE
12. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. finishCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
15. finishCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
16. finishCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
17. finishCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    outputBuffer[outPtr++] = (char) (0xD800 | (c >> 10));
1756 12 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. finishCharacters : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
8. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE
9. finishCharacters : Replaced bitwise AND with OR → NO_COVERAGE
10. finishCharacters : Replaced bitwise OR with AND → NO_COVERAGE
11. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    c = 0xDC00 | (c & 0x3FF);
1757
                }
1758 5 1. finishCharacters : Changed increment from 1 to -1 → NO_COVERAGE
2. finishCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                outputBuffer[outPtr++] = (char) c;
1759
            } else { // white space that we are interested in?
1760 22 1. finishCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
2. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
3. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. finishCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
5. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. finishCharacters : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
12. finishCharacters : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
13. finishCharacters : negated conditional → KILLED
14. finishCharacters : negated conditional → KILLED
15. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
16. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. finishCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
18. finishCharacters : changed conditional boundary to IF_ICMPGE → KILLED
19. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
20. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
21. finishCharacters : changed conditional boundary to IF_ICMPLT → KILLED
22. finishCharacters : changed conditional boundary to IF_ICMPNE → KILLED
                if (c == INT_CR || c == INT_LF) {
1761 8 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR
4. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. finishCharacters : Replaced operate with second operand → KILLED
8. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                    ++_inputPtr; // wasn't advanced yet, in this case
1762
                    outPtr = checkInTreeIndentation((char) c);
1763 7 1. finishCharacters : changed conditional boundary → SURVIVED
2. finishCharacters : changed conditional boundary to IFEQ → SURVIVED
3. finishCharacters : changed conditional boundary to IFGT → SURVIVED
4. finishCharacters : negated conditional → KILLED
5. finishCharacters : changed conditional boundary to IFLE → KILLED
6. finishCharacters : changed conditional boundary to IFLT → KILLED
7. finishCharacters : changed conditional boundary to IFNE → KILLED
                    if (outPtr < 0) {
1764
                        return;
1765
                    }
1766
                    // Above call also initializes the text builder appropriately
1767 1 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED
                    outputBuffer = _textBuilder.getBufferWithoutReset();
1768
                } else {
1769 1 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED
                    outputBuffer = _textBuilder.resetWithEmpty();
1770 5 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                    outPtr = 0;
1771
                }
1772
            }
1773
        }
1774
1775 1 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → SURVIVED
        final int[] TYPES = sCharTypes.TEXT_CHARS;
1776 1 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
        final char[] inputBuffer = _inputBuffer;
1777
1778
        main_loop:
1779
        while (true) {
1780
            char c;
1781
1782
            // Then the tight ascii non-funny-char loop:
1783
            ascii_loop:
1784
            while (true) {
1785 1 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                int ptr = _inputPtr;
1786 8 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
2. finishCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
3. finishCharacters : changed conditional boundary → TIMED_OUT
4. finishCharacters : negated conditional → KILLED
5. finishCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
6. finishCharacters : changed conditional boundary to IF_ICMPGE → KILLED
7. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
8. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
                if (ptr >= _inputEnd) {
1787 1 1. finishCharacters : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → TIMED_OUT
                    loadMoreGuaranteed();
1788 1 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                    ptr = _inputPtr;
1789
                }
1790 7 1. finishCharacters : changed conditional boundary → SURVIVED
2. finishCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
3. finishCharacters : negated conditional → KILLED
4. finishCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
5. finishCharacters : changed conditional boundary to IF_ICMPGE → KILLED
6. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
7. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
                if (outPtr >= outputBuffer.length) {
1791 1 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                    outputBuffer = _textBuilder.finishCurrentSegment();
1792 5 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    outPtr = 0;
1793
                }
1794 1 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
                int max = _inputEnd;
1795
                {
1796 2 1. finishCharacters : Replaced operate with second operand → KILLED
2. finishCharacters : Replaced operate with second operand → KILLED
                    int max2 = ptr + (outputBuffer.length - outPtr);
1797 7 1. finishCharacters : changed conditional boundary → SURVIVED
2. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
3. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. finishCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
5. finishCharacters : negated conditional → KILLED
6. finishCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
7. finishCharacters : changed conditional boundary to IF_ICMPLT → KILLED
                    if (max2 < max) {
1798
                        max = max2;
1799
                    }
1800
                }
1801 7 1. finishCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
2. finishCharacters : negated conditional → TIMED_OUT
3. finishCharacters : changed conditional boundary to IF_ICMPLT → TIMED_OUT
4. finishCharacters : changed conditional boundary to IF_ICMPNE → TIMED_OUT
5. finishCharacters : changed conditional boundary → KILLED
6. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
7. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
                while (ptr < max) {
1802 5 1. finishCharacters : Changed increment from 1 to -1 → KILLED
2. finishCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. finishCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. finishCharacters : UOI Mutator: Removed unary increment of local variable → KILLED
5. finishCharacters : UOI Mutator: Reversed increment of local variable → KILLED
                    c = inputBuffer[ptr++];
1803 11 1. finishCharacters : changed conditional boundary → SURVIVED
2. finishCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
3. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. finishCharacters : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
7. finishCharacters : negated conditional → KILLED
8. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. finishCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
10. finishCharacters : changed conditional boundary to IF_ICMPLT → KILLED
11. finishCharacters : changed conditional boundary to IF_ICMPNE → KILLED
                    if (c <= 0xFF) {
1804 6 1. finishCharacters : changed conditional boundary to IFLE → SURVIVED
2. finishCharacters : changed conditional boundary to IFLT → SURVIVED
3. finishCharacters : negated conditional → KILLED
4. finishCharacters : changed conditional boundary to IFGE → KILLED
5. finishCharacters : changed conditional boundary to IFGT → KILLED
6. finishCharacters : changed conditional boundary to IFNE → KILLED
                        if (TYPES[c] != 0) {
1805 1 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                            _inputPtr = ptr;
1806
                            break ascii_loop;
1807
                        }
1808 12 1. finishCharacters : negated conditional → SURVIVED
2. finishCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
3. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
5. finishCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
6. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. finishCharacters : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → KILLED
10. finishCharacters : changed conditional boundary → KILLED
11. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. finishCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
                    } else if (c >= 0xD800) { // surrogates and 0xFFFE/0xFFFF
1809 1 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                        _inputPtr = ptr;
1810
                        break ascii_loop;
1811
                    }
1812 5 1. finishCharacters : Changed increment from 1 to -1 → KILLED
2. finishCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. finishCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. finishCharacters : UOI Mutator: Removed unary increment of local variable → KILLED
5. finishCharacters : UOI Mutator: Reversed increment of local variable → KILLED
                    outputBuffer[outPtr++] = c;
1813
                }
1814 1 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                _inputPtr = ptr;
1815
            }
1816
            // And then exceptions:
1817 11 1. finishCharacters : changed conditional boundary → SURVIVED
2. finishCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
3. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. finishCharacters : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
7. finishCharacters : negated conditional → KILLED
8. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. finishCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
10. finishCharacters : changed conditional boundary to IF_ICMPLT → KILLED
11. finishCharacters : changed conditional boundary to IF_ICMPNE → KILLED
            if (c <= 0xFF) {
1818
                switch (TYPES[c]) {
1819
                case XmlCharTypes.CT_INVALID:
1820
                    c = handleInvalidXmlChar(c);
1821
                case XmlCharTypes.CT_WS_CR:
1822
                    {
1823 1 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        int ptr = _inputPtr;
1824 8 1. finishCharacters : changed conditional boundary → NO_COVERAGE
2. finishCharacters : negated conditional → NO_COVERAGE
3. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. finishCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
5. finishCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
6. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. finishCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (ptr >= _inputEnd) {
1825 1 1. finishCharacters : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
1826 1 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ptr = _inputPtr;
1827
                        }
1828 11 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. finishCharacters : negated conditional → NO_COVERAGE
6. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. finishCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                        if (inputBuffer[ptr] == '\n') {
1829 8 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishCharacters : Replaced operate with second operand → NO_COVERAGE
6. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ++_inputPtr;
1830
                        }
1831 1 1. finishCharacters : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                        markLF();
1832
                    }
1833 5 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    c = '\n';
1834
                    break;
1835
                case XmlCharTypes.CT_WS_LF:
1836 1 1. finishCharacters : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → SURVIVED
                    markLF();
1837
                    break;
1838
                case XmlCharTypes.CT_LT:
1839 8 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. finishCharacters : Replaced operate with second operand → KILLED
8. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                    --_inputPtr;
1840
                    break main_loop;
1841
                case XmlCharTypes.CT_AMP:
1842
                    {
1843 5 1. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR
2. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                        int d = handleEntityInText(false);
1844 6 1. finishCharacters : changed conditional boundary to IFGE → SURVIVED
2. finishCharacters : changed conditional boundary to IFGT → SURVIVED
3. finishCharacters : negated conditional → KILLED
4. finishCharacters : changed conditional boundary to IFEQ → KILLED
5. finishCharacters : changed conditional boundary to IFLE → KILLED
6. finishCharacters : changed conditional boundary to IFLT → KILLED
                        if (d == 0) { // unexpandable general parsed entity
1845
                            // _inputPtr set by entity expansion method
1846 6 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_entityPending mutated with null check on object → NO_COVERAGE
                            _entityPending = true;
1847
                            break main_loop;
1848
                        }
1849
                        // Ok; does it need a surrogate though? (over 16 bits)
1850 12 1. finishCharacters : Replaced Shift Right with Shift Left → SURVIVED
2. finishCharacters : negated conditional → SURVIVED
3. finishCharacters : changed conditional boundary to IFGE → SURVIVED
4. finishCharacters : changed conditional boundary to IFGT → SURVIVED
5. finishCharacters : changed conditional boundary to IFLE → SURVIVED
6. finishCharacters : changed conditional boundary to IFLT → SURVIVED
7. finishCharacters : changed conditional boundary to IFNE → SURVIVED
8. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. finishCharacters : Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED
12. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                        if ((d >> 16) != 0) {
1851 6 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE
5. finishCharacters : Replaced operate with second operand → NO_COVERAGE
6. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                            d -= 0x10000;
1852 17 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. finishCharacters : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
8. finishCharacters : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
9. finishCharacters : Changed increment from 1 to -1 → NO_COVERAGE
10. finishCharacters : Replaced Shift Right with Shift Left → NO_COVERAGE
11. finishCharacters : Replaced bitwise OR with AND → NO_COVERAGE
12. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. finishCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
15. finishCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
16. finishCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
17. finishCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                            outputBuffer[outPtr++] = (char) (0xD800 | (d >> 10));
1853
                            // Need to ensure room for one more char
1854 7 1. finishCharacters : changed conditional boundary → NO_COVERAGE
2. finishCharacters : negated conditional → NO_COVERAGE
3. finishCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                            if (outPtr >= outputBuffer.length) {
1855 1 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                                outputBuffer = _textBuilder.finishCurrentSegment();
1856 5 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                                outPtr = 0;
1857
                            }
1858 12 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. finishCharacters : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
8. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE
9. finishCharacters : Replaced bitwise AND with OR → NO_COVERAGE
10. finishCharacters : Replaced bitwise OR with AND → NO_COVERAGE
11. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                            d = (0xDC00 | (d & 0x3FF));
1859
                        }
1860
                        c = (char) d;
1861
                    }
1862
                    break;
1863
                case XmlCharTypes.CT_RBRACKET: // ']]>'?
1864
                    {
1865
                        // Let's then just count number of brackets --
1866
                        // in case they are not followed by '>'
1867 5 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                        int count = 1;
1868
                        while (true) {
1869 9 1. finishCharacters : changed conditional boundary → NO_COVERAGE
2. finishCharacters : negated conditional → NO_COVERAGE
3. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. finishCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. finishCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. finishCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                            if (_inputPtr >= _inputEnd) {
1870 1 1. finishCharacters : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                                loadMoreGuaranteed();
1871
                            }
1872 1 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            c = inputBuffer[_inputPtr];
1873 11 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE
5. finishCharacters : negated conditional → NO_COVERAGE
6. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
8. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. finishCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. finishCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                            if (c != ']') {
1874
                                break;
1875
                            }
1876 8 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishCharacters : Replaced operate with second operand → NO_COVERAGE
6. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ++_inputPtr; // to skip past bracket
1877 5 1. finishCharacters : Changed increment from 1 to -1 → NO_COVERAGE
2. finishCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                            ++count;
1878
                        }
1879 24 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. finishCharacters : Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE
8. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
9. finishCharacters : changed conditional boundary → NO_COVERAGE
10. finishCharacters : negated conditional → NO_COVERAGE
11. finishCharacters : negated conditional → NO_COVERAGE
12. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. finishCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
15. finishCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
16. finishCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
17. finishCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
18. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
19. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
20. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
21. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
22. finishCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
23. finishCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
24. finishCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (c == '>' && count > 1) {
1880 1 1. finishCharacters : removed call to com/fasterxml/aalto/in/ReaderScanner::reportIllegalCDataEnd → NO_COVERAGE
                            reportIllegalCDataEnd();
1881
                        }
1882
                        // Nope. Need to output all brackets, then; except
1883
                        // for one that can be left for normal output
1884 13 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishCharacters : changed conditional boundary → NO_COVERAGE
6. finishCharacters : negated conditional → NO_COVERAGE
7. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
13. finishCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        while (count > 1) {
1885 10 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE
5. finishCharacters : Changed increment from 1 to -1 → NO_COVERAGE
6. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
8. finishCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
9. finishCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
10. finishCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                            outputBuffer[outPtr++] = ']';
1886 7 1. finishCharacters : changed conditional boundary → NO_COVERAGE
2. finishCharacters : negated conditional → NO_COVERAGE
3. finishCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                            if (outPtr >= outputBuffer.length) {
1887 1 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                                outputBuffer = _textBuilder.finishCurrentSegment();
1888 5 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                                outPtr = 0;
1889
                            }
1890
                            // Need to ensure room for one more char
1891 5 1. finishCharacters : Changed increment from -1 to 1 → NO_COVERAGE
2. finishCharacters : UOI Mutator: Added unary decrement -1 -> -2 to local variable → NO_COVERAGE
3. finishCharacters : UOI Mutator: Added unary increment -1 -> 0 to local variable → NO_COVERAGE
4. finishCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                            --count;
1892
                        }
1893
                    }
1894
                    // Can just output the first ']' along normal output
1895 5 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE
5. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    c = ']';
1896
                    break;
1897
                // default:
1898
                    // Other types are not important here...
1899
                }
1900 12 1. finishCharacters : negated conditional → SURVIVED
2. finishCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
3. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
5. finishCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
6. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. finishCharacters : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → KILLED
10. finishCharacters : changed conditional boundary → KILLED
11. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. finishCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
            } else if (c >= 0xD800) {  // high-range, surrogates etc
1901 12 1. finishCharacters : changed conditional boundary → SURVIVED
2. finishCharacters : negated conditional → SURVIVED
3. finishCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
5. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
6. finishCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
7. finishCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
8. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. finishCharacters : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → KILLED
12. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                if (c < 0xE000) {
1902
                    // if ok, returns second surrogate; otherwise exception
1903
                    char d = checkSurrogate(c);
1904 5 1. finishCharacters : Changed increment from 1 to -1 → KILLED
2. finishCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. finishCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. finishCharacters : UOI Mutator: Removed unary increment of local variable → KILLED
5. finishCharacters : UOI Mutator: Reversed increment of local variable → KILLED
                    outputBuffer[outPtr++] = c;
1905 7 1. finishCharacters : changed conditional boundary → SURVIVED
2. finishCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
3. finishCharacters : negated conditional → KILLED
4. finishCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
5. finishCharacters : changed conditional boundary to IF_ICMPGE → KILLED
6. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
7. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
                    if (outPtr >= outputBuffer.length) {
1906 1 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                        outputBuffer = _textBuilder.finishCurrentSegment();
1907 5 1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                        outPtr = 0;
1908
                    }
1909
                    c = d;
1910 12 1. finishCharacters : changed conditional boundary → SURVIVED
2. finishCharacters : negated conditional → SURVIVED
3. finishCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. finishCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
5. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
6. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
7. finishCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
8. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. finishCharacters : Bug fixed: CRCR replace with One, Substituted 65534 with 1 → KILLED
12. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                } else if (c >= 0xFFFE) {
1911
                    c = handleInvalidXmlChar(c);
1912
                }
1913
            }
1914 5 1. finishCharacters : Changed increment from 1 to -1 → KILLED
2. finishCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. finishCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. finishCharacters : UOI Mutator: Removed unary increment of local variable → KILLED
5. finishCharacters : UOI Mutator: Reversed increment of local variable → KILLED
            outputBuffer[outPtr++] = c;
1915
        }
1916 2 1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED
2. finishCharacters : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
        _textBuilder.setCurrentLength(outPtr);
1917
1918
        // 03-Feb-2009, tatu: Need to support coalescing mode too:
1919 14 1. finishCharacters : negated conditional → SURVIVED
2. finishCharacters : negated conditional → SURVIVED
3. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_cfgCoalescing mutated with null check on object → SURVIVED
4. finishCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_entityPending mutated with null check on object → SURVIVED
5. finishCharacters : changed conditional boundary to IFEQ → SURVIVED
6. finishCharacters : changed conditional boundary to IFGE → SURVIVED
7. finishCharacters : changed conditional boundary to IFGE → SURVIVED
8. finishCharacters : changed conditional boundary to IFGT → SURVIVED
9. finishCharacters : changed conditional boundary to IFGT → SURVIVED
10. finishCharacters : changed conditional boundary to IFLE → SURVIVED
11. finishCharacters : changed conditional boundary to IFLE → SURVIVED
12. finishCharacters : changed conditional boundary to IFLT → SURVIVED
13. finishCharacters : changed conditional boundary to IFLT → SURVIVED
14. finishCharacters : changed conditional boundary to IFNE → SURVIVED
        if (_cfgCoalescing && !_entityPending) {
1920 1 1. finishCharacters : removed call to com/fasterxml/aalto/in/ReaderScanner::finishCoalescedText → NO_COVERAGE
            finishCoalescedText();
1921
        }
1922
    }
1923
1924
    @Override
1925
    protected final void finishSpace() throws XMLStreamException
1926
    {
1927
        /* Ok: so, mTmpChar contains first space char. If it looks
1928
         * like indentation, we can probably optimize a bit...
1929
         */
1930 1 1. finishSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and fieldmTmpChar mutated with null check on object → NO_COVERAGE
        char tmp = (char)mTmpChar;
1931
        char[] outputBuffer;
1932
        int outPtr;
1933
1934 22 1. finishSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. finishSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. finishSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. finishSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. finishSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. finishSpace : Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE
8. finishSpace : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
9. finishSpace : negated conditional → NO_COVERAGE
10. finishSpace : negated conditional → NO_COVERAGE
11. finishSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. finishSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. finishSpace : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
14. finishSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
15. finishSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
16. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
19. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
20. finishSpace : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
21. finishSpace : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
22. finishSpace : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
        if (tmp == '\r' || tmp == '\n') {
1935
            outPtr = checkPrologIndentation(tmp);
1936 7 1. finishSpace : changed conditional boundary → NO_COVERAGE
2. finishSpace : negated conditional → NO_COVERAGE
3. finishSpace : changed conditional boundary to IFEQ → NO_COVERAGE
4. finishSpace : changed conditional boundary to IFGT → NO_COVERAGE
5. finishSpace : changed conditional boundary to IFLE → NO_COVERAGE
6. finishSpace : changed conditional boundary to IFLT → NO_COVERAGE
7. finishSpace : changed conditional boundary to IFNE → NO_COVERAGE
            if (outPtr < 0) {
1937
                return;
1938
            }
1939
            // Above call also initializes the text builder appropriately
1940 1 1. finishSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
            outputBuffer = _textBuilder.getBufferWithoutReset();
1941
        } else {
1942 1 1. finishSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
            outputBuffer = _textBuilder.resetWithEmpty();
1943 5 1. finishSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishSpace : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
            outputBuffer[0] = tmp;
1944 5 1. finishSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishSpace : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
            outPtr = 1;
1945
        }
1946
1947 1 1. finishSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
        int ptr = _inputPtr;
1948
1949
        while (true) {
1950 8 1. finishSpace : changed conditional boundary → NO_COVERAGE
2. finishSpace : negated conditional → NO_COVERAGE
3. finishSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. finishSpace : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
5. finishSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
6. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. finishSpace : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (ptr >= _inputEnd) {
1951 6 1. finishSpace : negated conditional → NO_COVERAGE
2. finishSpace : changed conditional boundary to IFEQ → NO_COVERAGE
3. finishSpace : changed conditional boundary to IFGE → NO_COVERAGE
4. finishSpace : changed conditional boundary to IFGT → NO_COVERAGE
5. finishSpace : changed conditional boundary to IFLE → NO_COVERAGE
6. finishSpace : changed conditional boundary to IFLT → NO_COVERAGE
                if (!loadMore()) {
1952
                    break;
1953
                }
1954 1 1. finishSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                ptr = _inputPtr;
1955
            }
1956 1 1. finishSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
            char c = _inputBuffer[ptr];
1957 13 1. finishSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishSpace : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
5. finishSpace : changed conditional boundary → NO_COVERAGE
6. finishSpace : negated conditional → NO_COVERAGE
7. finishSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishSpace : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishSpace : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
13. finishSpace : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (c > INT_SPACE) {
1958
                break;
1959
            }
1960 5 1. finishSpace : Changed increment from 1 to -1 → NO_COVERAGE
2. finishSpace : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishSpace : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishSpace : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishSpace : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
            ++ptr;
1961
1962 11 1. finishSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishSpace : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. finishSpace : negated conditional → NO_COVERAGE
6. finishSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishSpace : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. finishSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishSpace : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
            if (c == INT_LF) {
1963 1 1. finishSpace : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                markLF(ptr);
1964 11 1. finishSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishSpace : Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE
5. finishSpace : negated conditional → NO_COVERAGE
6. finishSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishSpace : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. finishSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishSpace : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
            } else if (c == INT_CR) {
1965 8 1. finishSpace : changed conditional boundary → NO_COVERAGE
2. finishSpace : negated conditional → NO_COVERAGE
3. finishSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. finishSpace : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
5. finishSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
6. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. finishSpace : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (ptr >= _inputEnd) {
1966 6 1. finishSpace : negated conditional → NO_COVERAGE
2. finishSpace : changed conditional boundary to IFEQ → NO_COVERAGE
3. finishSpace : changed conditional boundary to IFGE → NO_COVERAGE
4. finishSpace : changed conditional boundary to IFGT → NO_COVERAGE
5. finishSpace : changed conditional boundary to IFLE → NO_COVERAGE
6. finishSpace : changed conditional boundary to IFLT → NO_COVERAGE
                    if (!loadMore()) { // still need to output the lf
1967 7 1. finishSpace : changed conditional boundary → NO_COVERAGE
2. finishSpace : negated conditional → NO_COVERAGE
3. finishSpace : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishSpace : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (outPtr >= outputBuffer.length) {
1968 1 1. finishSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                            outputBuffer = _textBuilder.finishCurrentSegment();
1969 5 1. finishSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishSpace : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                            outPtr = 0;
1970
                        }
1971 10 1. finishSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishSpace : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. finishSpace : Changed increment from 1 to -1 → NO_COVERAGE
6. finishSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishSpace : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
8. finishSpace : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
9. finishSpace : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
10. finishSpace : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                        outputBuffer[outPtr++] = '\n';
1972
                        break;
1973
                    }
1974 1 1. finishSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                    ptr = _inputPtr;
1975
                }
1976 12 1. finishSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishSpace : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. finishSpace : negated conditional → NO_COVERAGE
6. finishSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. finishSpace : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishSpace : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                if (_inputBuffer[ptr] == '\n') {
1977 5 1. finishSpace : Changed increment from 1 to -1 → NO_COVERAGE
2. finishSpace : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishSpace : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishSpace : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishSpace : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    ++ptr;
1978
                }
1979 1 1. finishSpace : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                markLF(ptr);
1980 5 1. finishSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishSpace : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. finishSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                c = '\n'; // need to convert to canonical lf
1981 22 1. finishSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. finishSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. finishSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. finishSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. finishSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. finishSpace : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
8. finishSpace : Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE
9. finishSpace : negated conditional → NO_COVERAGE
10. finishSpace : negated conditional → NO_COVERAGE
11. finishSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. finishSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. finishSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
14. finishSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
15. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
16. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
19. finishSpace : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
20. finishSpace : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
21. finishSpace : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
22. finishSpace : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            } else if (c != ' ' && c != '\t') {
1982 1 1. finishSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                _inputPtr = ptr;
1983 1 1. finishSpace : removed call to com/fasterxml/aalto/in/ReaderScanner::throwInvalidSpace → NO_COVERAGE
                throwInvalidSpace(c);
1984
            }
1985
1986
            // Ok, can output the char
1987 7 1. finishSpace : changed conditional boundary → NO_COVERAGE
2. finishSpace : negated conditional → NO_COVERAGE
3. finishSpace : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishSpace : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (outPtr >= outputBuffer.length) {
1988 1 1. finishSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                outputBuffer = _textBuilder.finishCurrentSegment();
1989 5 1. finishSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishSpace : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                outPtr = 0;
1990
            }
1991 5 1. finishSpace : Changed increment from 1 to -1 → NO_COVERAGE
2. finishSpace : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishSpace : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishSpace : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishSpace : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
            outputBuffer[outPtr++] = c;
1992
        }
1993
1994 1 1. finishSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
        _inputPtr = ptr;
1995 2 1. finishSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
2. finishSpace : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → NO_COVERAGE
        _textBuilder.setCurrentLength(outPtr);
1996
    }
1997
1998
    /*
1999
    /**********************************************************************
2000
    /* 2nd level parsing for coalesced text
2001
    /**********************************************************************
2002
     */
2003
2004
    /**
2005
     * Method that gets called after a primary text segment (of type
2006
     * CHARACTERS or CDATA, not applicable to SPACE) has been read in
2007
     * text buffer. Method has to see if the following event would
2008
     * be textual as well, and if so, read it (and any other following
2009
     * textual segments).
2010
     */
2011
    protected final void finishCoalescedText()
2012
        throws XMLStreamException
2013
    {
2014
        while (true) {
2015
            // no matter what, will need (and can get) one char
2016 9 1. finishCoalescedText : changed conditional boundary → NO_COVERAGE
2. finishCoalescedText : negated conditional → NO_COVERAGE
3. finishCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. finishCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. finishCoalescedText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. finishCoalescedText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. finishCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. finishCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. finishCoalescedText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (_inputPtr >= _inputEnd) {
2017 6 1. finishCoalescedText : negated conditional → NO_COVERAGE
2. finishCoalescedText : changed conditional boundary to IFEQ → NO_COVERAGE
3. finishCoalescedText : changed conditional boundary to IFGE → NO_COVERAGE
4. finishCoalescedText : changed conditional boundary to IFGT → NO_COVERAGE
5. finishCoalescedText : changed conditional boundary to IFLE → NO_COVERAGE
6. finishCoalescedText : changed conditional boundary to IFLT → NO_COVERAGE
                if (!loadMore()) { // most likely an error, will be handled later on
2018
                    return;
2019
                }
2020
            }
2021
2022 13 1. finishCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedText : Bug fixed: CRCR replace with One, Substituted 60 with 1 → NO_COVERAGE
5. finishCoalescedText : negated conditional → NO_COVERAGE
6. finishCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. finishCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. finishCoalescedText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. finishCoalescedText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. finishCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. finishCoalescedText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
            if (_inputBuffer[_inputPtr] == '<') { // markup of some kind
2023
                /* In worst case, need 3 chars ("<![") all in all to know
2024
                 * if we are getting a CDATA section
2025
                 */
2026 15 1. finishCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedText : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
5. finishCoalescedText : Replaced operate with second operand → NO_COVERAGE
6. finishCoalescedText : changed conditional boundary → NO_COVERAGE
7. finishCoalescedText : negated conditional → NO_COVERAGE
8. finishCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. finishCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
10. finishCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
11. finishCoalescedText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
12. finishCoalescedText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
13. finishCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
14. finishCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
15. finishCoalescedText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if ((_inputPtr + 3) >= _inputEnd) {
2027 11 1. finishCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedText : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
5. finishCoalescedText : negated conditional → NO_COVERAGE
6. finishCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCoalescedText : changed conditional boundary to IFEQ → NO_COVERAGE
8. finishCoalescedText : changed conditional boundary to IFGE → NO_COVERAGE
9. finishCoalescedText : changed conditional boundary to IFGT → NO_COVERAGE
10. finishCoalescedText : changed conditional boundary to IFLE → NO_COVERAGE
11. finishCoalescedText : changed conditional boundary to IFLT → NO_COVERAGE
                    if (!loadAndRetain(3)) {
2028
                        // probably an error, but will be handled later
2029
                        return;
2030
                    }
2031
                }
2032 38 1. finishCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. finishCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. finishCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
5. finishCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. finishCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. finishCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
8. finishCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
9. finishCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. finishCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
11. finishCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
12. finishCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
13. finishCoalescedText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
14. finishCoalescedText : Replaced operate with second operand → NO_COVERAGE
15. finishCoalescedText : Bug fixed: CRCR replace with One, Substituted 33 with 1 → NO_COVERAGE
16. finishCoalescedText : Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE
17. finishCoalescedText : Replaced operate with second operand → NO_COVERAGE
18. finishCoalescedText : Bug fixed: CRCR replace with One, Substituted 91 with 1 → NO_COVERAGE
19. finishCoalescedText : negated conditional → NO_COVERAGE
20. finishCoalescedText : negated conditional → NO_COVERAGE
21. finishCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
22. finishCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
23. finishCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
24. finishCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
25. finishCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
26. finishCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
27. finishCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
28. finishCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
29. finishCoalescedText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
30. finishCoalescedText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
31. finishCoalescedText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
32. finishCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
33. finishCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
34. finishCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
35. finishCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
36. finishCoalescedText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
37. finishCoalescedText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
38. finishCoalescedText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (_inputBuffer[_inputPtr+1] != '!'
2033
                    || _inputBuffer[_inputPtr+2] != '[') {
2034
                    // can't be CDATA, we are done here
2035
                    return;
2036
                }
2037
                // but let's verify it still:
2038 8 1. finishCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedText : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
5. finishCoalescedText : Replaced operate with second operand → NO_COVERAGE
6. finishCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. finishCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                _inputPtr += 3;
2039 22 1. finishCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. finishCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. finishCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. finishCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. finishCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. finishCoalescedText : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
8. finishCoalescedText : Bug fixed: CRCR replace with One, Substituted 6 with 1 → NO_COVERAGE
9. finishCoalescedText : changed conditional boundary → NO_COVERAGE
10. finishCoalescedText : Changed increment from 1 to -1 → NO_COVERAGE
11. finishCoalescedText : negated conditional → NO_COVERAGE
12. finishCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. finishCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. finishCoalescedText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
15. finishCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
16. finishCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. finishCoalescedText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
18. finishCoalescedText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
19. finishCoalescedText : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
20. finishCoalescedText : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
21. finishCoalescedText : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
22. finishCoalescedText : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                for (int i = 0; i < 6; ++i) {
2040 9 1. finishCoalescedText : changed conditional boundary → NO_COVERAGE
2. finishCoalescedText : negated conditional → NO_COVERAGE
3. finishCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. finishCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. finishCoalescedText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. finishCoalescedText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. finishCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. finishCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. finishCoalescedText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (_inputPtr >= _inputEnd) {
2041 1 1. finishCoalescedText : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                        loadMoreGuaranteed();
2042
                    }
2043 9 1. finishCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishCoalescedText : Replaced operate with second operand → NO_COVERAGE
6. finishCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. finishCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. finishCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                    char c = _inputBuffer[_inputPtr++];
2044 6 1. finishCoalescedText : negated conditional → NO_COVERAGE
2. finishCoalescedText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
3. finishCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
4. finishCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
5. finishCoalescedText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
6. finishCoalescedText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (c != CDATA_STR.charAt(i)) {
2045 1 1. finishCoalescedText : removed call to com/fasterxml/aalto/in/ReaderScanner::reportTreeUnexpChar → NO_COVERAGE
                        reportTreeUnexpChar(c, " (expected '"+CDATA_STR.charAt(i)+"' for CDATA section)");
2046
                    }
2047
                }
2048 1 1. finishCoalescedText : removed call to com/fasterxml/aalto/in/ReaderScanner::finishCoalescedCData → NO_COVERAGE
                finishCoalescedCData();
2049
            } else { // textual (or entity, error etc)
2050 1 1. finishCoalescedText : removed call to com/fasterxml/aalto/in/ReaderScanner::finishCoalescedCharacters → NO_COVERAGE
                finishCoalescedCharacters();
2051 7 1. finishCoalescedText : negated conditional → NO_COVERAGE
2. finishCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_entityPending mutated with null check on object → NO_COVERAGE
3. finishCoalescedText : changed conditional boundary to IFGE → NO_COVERAGE
4. finishCoalescedText : changed conditional boundary to IFGT → NO_COVERAGE
5. finishCoalescedText : changed conditional boundary to IFLE → NO_COVERAGE
6. finishCoalescedText : changed conditional boundary to IFLT → NO_COVERAGE
7. finishCoalescedText : changed conditional boundary to IFNE → NO_COVERAGE
                if (_entityPending) {
2052
                    break;
2053
                }
2054
            }
2055
        }
2056
    }
2057
2058
    // note: code mostly copied from 'finishCharacters', just simplified
2059
    // in some places
2060
    protected final void finishCoalescedCData()
2061
        throws XMLStreamException
2062
    {
2063 1 1. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → NO_COVERAGE
        final int[] TYPES = sCharTypes.OTHER_CHARS;
2064 1 1. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
        final char[] inputBuffer = _inputBuffer;
2065
2066 1 1. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
        char[] outputBuffer = _textBuilder.getBufferWithoutReset();
2067 1 1. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
        int outPtr = _textBuilder.getCurrentLength();
2068
2069
        /* At this point, space (if any) has been skipped, and we are
2070
         * to parse and store the contents
2071
         */
2072
        main_loop:
2073
        while (true) {
2074
            char c;
2075
            // Then the tight ascii non-funny-char loop:
2076
            ascii_loop:
2077
            while (true) {
2078 1 1. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                int ptr = _inputPtr;
2079 8 1. finishCoalescedCData : changed conditional boundary → NO_COVERAGE
2. finishCoalescedCData : negated conditional → NO_COVERAGE
3. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. finishCoalescedCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
5. finishCoalescedCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
6. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. finishCoalescedCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (ptr >= _inputEnd) {
2080 1 1. finishCoalescedCData : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
2081 1 1. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                    ptr = _inputPtr;
2082
                }
2083 7 1. finishCoalescedCData : changed conditional boundary → NO_COVERAGE
2. finishCoalescedCData : negated conditional → NO_COVERAGE
3. finishCoalescedCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishCoalescedCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishCoalescedCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (outPtr >= outputBuffer.length) {
2084 1 1. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                    outputBuffer = _textBuilder.finishCurrentSegment();
2085 5 1. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    outPtr = 0;
2086
                }
2087 1 1. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
                int max = _inputEnd;
2088
                {
2089 2 1. finishCoalescedCData : Replaced operate with second operand → NO_COVERAGE
2. finishCoalescedCData : Replaced operate with second operand → NO_COVERAGE
                    int max2 = ptr + (outputBuffer.length - outPtr);
2090 7 1. finishCoalescedCData : changed conditional boundary → NO_COVERAGE
2. finishCoalescedCData : negated conditional → NO_COVERAGE
3. finishCoalescedCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
5. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishCoalescedCData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
7. finishCoalescedCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (max2 < max) {
2091
                        max = max2;
2092
                    }
2093
                }
2094 7 1. finishCoalescedCData : changed conditional boundary → NO_COVERAGE
2. finishCoalescedCData : negated conditional → NO_COVERAGE
3. finishCoalescedCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
5. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishCoalescedCData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
7. finishCoalescedCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                while (ptr < max) {
2095 5 1. finishCoalescedCData : Changed increment from 1 to -1 → NO_COVERAGE
2. finishCoalescedCData : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishCoalescedCData : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishCoalescedCData : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishCoalescedCData : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    c = inputBuffer[ptr++];
2096 11 1. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. finishCoalescedCData : changed conditional boundary → NO_COVERAGE
6. finishCoalescedCData : negated conditional → NO_COVERAGE
7. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCoalescedCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCoalescedCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishCoalescedCData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. finishCoalescedCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (c <= 0xFF) {
2097 6 1. finishCoalescedCData : negated conditional → NO_COVERAGE
2. finishCoalescedCData : changed conditional boundary to IFGE → NO_COVERAGE
3. finishCoalescedCData : changed conditional boundary to IFGT → NO_COVERAGE
4. finishCoalescedCData : changed conditional boundary to IFLE → NO_COVERAGE
5. finishCoalescedCData : changed conditional boundary to IFLT → NO_COVERAGE
6. finishCoalescedCData : changed conditional boundary to IFNE → NO_COVERAGE
                        if (TYPES[c] != 0) {
2098 1 1. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            _inputPtr = ptr;
2099
                            break ascii_loop;
2100
                        }
2101 12 1. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. finishCoalescedCData : changed conditional boundary → NO_COVERAGE
6. finishCoalescedCData : negated conditional → NO_COVERAGE
7. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCoalescedCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCoalescedCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishCoalescedCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    } else if (c >= 0xD800) { // surrogates and 0xFFFE/0xFFFF
2102 1 1. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        _inputPtr = ptr;
2103
                        break ascii_loop;
2104
                    }
2105 5 1. finishCoalescedCData : Changed increment from 1 to -1 → NO_COVERAGE
2. finishCoalescedCData : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishCoalescedCData : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishCoalescedCData : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishCoalescedCData : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    outputBuffer[outPtr++] = c;
2106
                }
2107 1 1. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                _inputPtr = ptr;
2108
            }
2109
            // And then exceptions:
2110 11 1. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. finishCoalescedCData : changed conditional boundary → NO_COVERAGE
6. finishCoalescedCData : negated conditional → NO_COVERAGE
7. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCoalescedCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCoalescedCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishCoalescedCData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. finishCoalescedCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (c <= 0xFF) {
2111
                switch (TYPES[c]) {
2112
                case XmlCharTypes.CT_INVALID:
2113
                    c = handleInvalidXmlChar(c);
2114
                case XmlCharTypes.CT_WS_CR:
2115
                    {
2116 9 1. finishCoalescedCData : changed conditional boundary → NO_COVERAGE
2. finishCoalescedCData : negated conditional → NO_COVERAGE
3. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. finishCoalescedCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. finishCoalescedCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. finishCoalescedCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (_inputPtr >= _inputEnd) {
2117 1 1. finishCoalescedCData : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
2118
                        }
2119 12 1. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. finishCoalescedCData : negated conditional → NO_COVERAGE
6. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. finishCoalescedCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCoalescedCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishCoalescedCData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                        if (inputBuffer[_inputPtr] == '\n') {
2120 8 1. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishCoalescedCData : Replaced operate with second operand → NO_COVERAGE
6. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ++_inputPtr;
2121
                        }
2122 1 1. finishCoalescedCData : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                        markLF();
2123
                    }
2124 5 1. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    c = '\n';
2125
                    break;
2126
                case XmlCharTypes.CT_WS_LF:
2127 1 1. finishCoalescedCData : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                    markLF();
2128
                    break;
2129
                case XmlCharTypes.CT_RBRACKET: // close ']]>' marker?
2130
                    /* Ok: let's just parse all consequtive right brackets,
2131
                     * and see if followed by greater-than char. This because
2132
                     * we can only push back at most one char at a time, and
2133
                     * thus can't easily just check a subset
2134
                     */
2135 5 1. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    int count = 0; // ignore first bracket
2136
                    char d;
2137
 
2138
                    do {
2139 9 1. finishCoalescedCData : changed conditional boundary → NO_COVERAGE
2. finishCoalescedCData : negated conditional → NO_COVERAGE
3. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. finishCoalescedCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. finishCoalescedCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. finishCoalescedCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (_inputPtr >= _inputEnd) {
2140 1 1. finishCoalescedCData : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
2141
                        }
2142 2 1. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
2. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        d = _inputBuffer[_inputPtr];
2143 11 1. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE
5. finishCoalescedCData : negated conditional → NO_COVERAGE
6. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCoalescedCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
8. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. finishCoalescedCData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. finishCoalescedCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (d != ']') {
2144
                            break;
2145
                        }
2146 8 1. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishCoalescedCData : Replaced operate with second operand → NO_COVERAGE
6. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        ++_inputPtr;
2147 5 1. finishCoalescedCData : Changed increment from 1 to -1 → NO_COVERAGE
2. finishCoalescedCData : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishCoalescedCData : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishCoalescedCData : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishCoalescedCData : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                        ++count;
2148
                    } while (true);
2149
                    
2150
                    // Was the marker found?
2151 33 1. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
5. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
8. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
9. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
11. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
12. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
13. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE
14. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
15. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
16. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
17. finishCoalescedCData : changed conditional boundary → NO_COVERAGE
18. finishCoalescedCData : negated conditional → NO_COVERAGE
19. finishCoalescedCData : negated conditional → NO_COVERAGE
20. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
21. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
22. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
23. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
24. finishCoalescedCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
25. finishCoalescedCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
26. finishCoalescedCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
27. finishCoalescedCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
28. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
29. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
30. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
31. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
32. finishCoalescedCData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
33. finishCoalescedCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    boolean ok = (d == '>' && count >= 1);
2152 6 1. finishCoalescedCData : negated conditional → NO_COVERAGE
2. finishCoalescedCData : changed conditional boundary to IFGE → NO_COVERAGE
3. finishCoalescedCData : changed conditional boundary to IFGT → NO_COVERAGE
4. finishCoalescedCData : changed conditional boundary to IFLE → NO_COVERAGE
5. finishCoalescedCData : changed conditional boundary to IFLT → NO_COVERAGE
6. finishCoalescedCData : changed conditional boundary to IFNE → NO_COVERAGE
                    if (ok) {
2153 5 1. finishCoalescedCData : Changed increment from -1 to 1 → NO_COVERAGE
2. finishCoalescedCData : UOI Mutator: Added unary decrement -1 -> -2 to local variable → NO_COVERAGE
3. finishCoalescedCData : UOI Mutator: Added unary increment -1 -> 0 to local variable → NO_COVERAGE
4. finishCoalescedCData : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishCoalescedCData : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                        --count;
2154
                    }
2155
                    // Brackets to copy to output?
2156 12 1. finishCoalescedCData : changed conditional boundary → NO_COVERAGE
2. finishCoalescedCData : Changed increment from -1 to 1 → NO_COVERAGE
3. finishCoalescedCData : negated conditional → NO_COVERAGE
4. finishCoalescedCData : changed conditional boundary to IFEQ → NO_COVERAGE
5. finishCoalescedCData : changed conditional boundary to IFGE → NO_COVERAGE
6. finishCoalescedCData : changed conditional boundary to IFGT → NO_COVERAGE
7. finishCoalescedCData : changed conditional boundary to IFLT → NO_COVERAGE
8. finishCoalescedCData : changed conditional boundary to IFNE → NO_COVERAGE
9. finishCoalescedCData : UOI Mutator: Added unary decrement -1 -> -2 to local variable → NO_COVERAGE
10. finishCoalescedCData : UOI Mutator: Added unary increment -1 -> 0 to local variable → NO_COVERAGE
11. finishCoalescedCData : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
12. finishCoalescedCData : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    for (; count > 0; --count) {
2157 10 1. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE
5. finishCoalescedCData : Changed increment from 1 to -1 → NO_COVERAGE
6. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCoalescedCData : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
8. finishCoalescedCData : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
9. finishCoalescedCData : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
10. finishCoalescedCData : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                        outputBuffer[outPtr++] = ']';
2158 7 1. finishCoalescedCData : changed conditional boundary → NO_COVERAGE
2. finishCoalescedCData : negated conditional → NO_COVERAGE
3. finishCoalescedCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishCoalescedCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishCoalescedCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (outPtr >= outputBuffer.length) {
2159 1 1. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                            outputBuffer = _textBuilder.finishCurrentSegment();
2160 5 1. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                            outPtr = 0;
2161
                        }
2162
                    }
2163 6 1. finishCoalescedCData : negated conditional → NO_COVERAGE
2. finishCoalescedCData : changed conditional boundary to IFGE → NO_COVERAGE
3. finishCoalescedCData : changed conditional boundary to IFGT → NO_COVERAGE
4. finishCoalescedCData : changed conditional boundary to IFLE → NO_COVERAGE
5. finishCoalescedCData : changed conditional boundary to IFLT → NO_COVERAGE
6. finishCoalescedCData : changed conditional boundary to IFNE → NO_COVERAGE
                    if (ok) {
2164 8 1. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishCoalescedCData : Replaced operate with second operand → NO_COVERAGE
6. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        ++_inputPtr; // to consume '>'
2165
                        break main_loop;
2166
                    }
2167
                    break;
2168
                // default:
2169
                    // Other types are not important here...
2170
                }
2171 12 1. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. finishCoalescedCData : changed conditional boundary → NO_COVERAGE
6. finishCoalescedCData : negated conditional → NO_COVERAGE
7. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCoalescedCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCoalescedCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishCoalescedCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            } else if (c >= 0xD800) {  // high-range, surrogates etc
2172 12 1. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE
5. finishCoalescedCData : changed conditional boundary → NO_COVERAGE
6. finishCoalescedCData : negated conditional → NO_COVERAGE
7. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCoalescedCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishCoalescedCData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
12. finishCoalescedCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (c < 0xE000) {
2173
                    // if ok, returns second surrogate; otherwise exception
2174
                    char d = checkSurrogate(c);
2175 5 1. finishCoalescedCData : Changed increment from 1 to -1 → NO_COVERAGE
2. finishCoalescedCData : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishCoalescedCData : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishCoalescedCData : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishCoalescedCData : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    outputBuffer[outPtr++] = c;
2176 7 1. finishCoalescedCData : changed conditional boundary → NO_COVERAGE
2. finishCoalescedCData : negated conditional → NO_COVERAGE
3. finishCoalescedCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishCoalescedCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishCoalescedCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (outPtr >= outputBuffer.length) {
2177 1 1. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                        outputBuffer = _textBuilder.finishCurrentSegment();
2178 5 1. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                        outPtr = 0;
2179
                    }
2180
                    c = d;
2181 12 1. finishCoalescedCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCData : Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE
5. finishCoalescedCData : changed conditional boundary → NO_COVERAGE
6. finishCoalescedCData : negated conditional → NO_COVERAGE
7. finishCoalescedCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCoalescedCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCoalescedCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishCoalescedCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishCoalescedCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                } else if (c >= 0xFFFE) {
2182
                    c = handleInvalidXmlChar(c);
2183
                }
2184
            }
2185
            // Ok, can output the char; there's room for one char at least
2186 5 1. finishCoalescedCData : Changed increment from 1 to -1 → NO_COVERAGE
2. finishCoalescedCData : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishCoalescedCData : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishCoalescedCData : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishCoalescedCData : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
            outputBuffer[outPtr++] = c;
2187
        }
2188 2 1. finishCoalescedCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
2. finishCoalescedCData : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → NO_COVERAGE
        _textBuilder.setCurrentLength(outPtr);
2189
    }
2190
2191
    // note: code mostly copied from 'finishCharacters', just simplified
2192
    // in some places
2193
    protected final void finishCoalescedCharacters()
2194
        throws XMLStreamException
2195
    {
2196
        // first char can't be from (char) entity (wrt finishCharacters)
2197
2198 1 1. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → NO_COVERAGE
        final int[] TYPES = sCharTypes.TEXT_CHARS;
2199 1 1. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
        final char[] inputBuffer = _inputBuffer;
2200
2201 1 1. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
        char[] outputBuffer = _textBuilder.getBufferWithoutReset();
2202 1 1. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
        int outPtr = _textBuilder.getCurrentLength();
2203
2204
        main_loop:
2205
        while (true) {
2206
            char c;
2207
2208
            ascii_loop:
2209
            while (true) { // tight loop for ascii chars
2210 1 1. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                int ptr = _inputPtr;
2211 8 1. finishCoalescedCharacters : changed conditional boundary → NO_COVERAGE
2. finishCoalescedCharacters : negated conditional → NO_COVERAGE
3. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. finishCoalescedCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
5. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
6. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. finishCoalescedCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (ptr >= _inputEnd) {
2212 1 1. finishCoalescedCharacters : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
2213 1 1. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                    ptr = _inputPtr;
2214
                }
2215 7 1. finishCoalescedCharacters : changed conditional boundary → NO_COVERAGE
2. finishCoalescedCharacters : negated conditional → NO_COVERAGE
3. finishCoalescedCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishCoalescedCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (outPtr >= outputBuffer.length) {
2216 1 1. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                    outputBuffer = _textBuilder.finishCurrentSegment();
2217 5 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    outPtr = 0;
2218
                }
2219 1 1. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
                int max = _inputEnd;
2220
                {
2221 2 1. finishCoalescedCharacters : Replaced operate with second operand → NO_COVERAGE
2. finishCoalescedCharacters : Replaced operate with second operand → NO_COVERAGE
                    int max2 = ptr + (outputBuffer.length - outPtr);
2222 7 1. finishCoalescedCharacters : changed conditional boundary → NO_COVERAGE
2. finishCoalescedCharacters : negated conditional → NO_COVERAGE
3. finishCoalescedCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
5. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishCoalescedCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
7. finishCoalescedCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (max2 < max) {
2223
                        max = max2;
2224
                    }
2225
                }
2226 7 1. finishCoalescedCharacters : changed conditional boundary → NO_COVERAGE
2. finishCoalescedCharacters : negated conditional → NO_COVERAGE
3. finishCoalescedCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
5. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishCoalescedCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
7. finishCoalescedCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                while (ptr < max) {
2227 5 1. finishCoalescedCharacters : Changed increment from 1 to -1 → NO_COVERAGE
2. finishCoalescedCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishCoalescedCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishCoalescedCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishCoalescedCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    c = inputBuffer[ptr++];
2228 11 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : changed conditional boundary → NO_COVERAGE
6. finishCoalescedCharacters : negated conditional → NO_COVERAGE
7. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCoalescedCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishCoalescedCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. finishCoalescedCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (c <= 0xFF) {
2229 6 1. finishCoalescedCharacters : negated conditional → NO_COVERAGE
2. finishCoalescedCharacters : changed conditional boundary to IFGE → NO_COVERAGE
3. finishCoalescedCharacters : changed conditional boundary to IFGT → NO_COVERAGE
4. finishCoalescedCharacters : changed conditional boundary to IFLE → NO_COVERAGE
5. finishCoalescedCharacters : changed conditional boundary to IFLT → NO_COVERAGE
6. finishCoalescedCharacters : changed conditional boundary to IFNE → NO_COVERAGE
                        if (TYPES[c] != 0) {
2230 1 1. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            _inputPtr = ptr;
2231
                            break ascii_loop;
2232
                        }
2233 12 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : changed conditional boundary → NO_COVERAGE
6. finishCoalescedCharacters : negated conditional → NO_COVERAGE
7. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCoalescedCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishCoalescedCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    } else if (c >= 0xD800) { // surrogates and 0xFFFE/0xFFFF
2234 1 1. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        _inputPtr = ptr;
2235
                        break ascii_loop;
2236
                    }
2237 5 1. finishCoalescedCharacters : Changed increment from 1 to -1 → NO_COVERAGE
2. finishCoalescedCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishCoalescedCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishCoalescedCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishCoalescedCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    outputBuffer[outPtr++] = c;
2238
                }
2239 1 1. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                _inputPtr = ptr;
2240
            }
2241
            // And then exceptions:
2242 11 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : changed conditional boundary → NO_COVERAGE
6. finishCoalescedCharacters : negated conditional → NO_COVERAGE
7. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCoalescedCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishCoalescedCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. finishCoalescedCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (c <= 0xFF) {
2243
                switch (TYPES[c]) {
2244
                case XmlCharTypes.CT_INVALID:
2245
                    c = handleInvalidXmlChar(c);
2246
                case XmlCharTypes.CT_WS_CR:
2247
                    {
2248 1 1. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        int ptr = _inputPtr;
2249 8 1. finishCoalescedCharacters : changed conditional boundary → NO_COVERAGE
2. finishCoalescedCharacters : negated conditional → NO_COVERAGE
3. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. finishCoalescedCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
5. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
6. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. finishCoalescedCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (ptr >= _inputEnd) {
2250 1 1. finishCoalescedCharacters : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
2251 1 1. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ptr = _inputPtr;
2252
                        }
2253 11 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : negated conditional → NO_COVERAGE
6. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCoalescedCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishCoalescedCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                        if (inputBuffer[ptr] == '\n') {
2254 8 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : Replaced operate with second operand → NO_COVERAGE
6. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ++_inputPtr;
2255
                        }
2256 1 1. finishCoalescedCharacters : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                        markLF();
2257
                    }
2258 5 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    c = '\n';
2259
                    break;
2260
                case XmlCharTypes.CT_WS_LF:
2261 1 1. finishCoalescedCharacters : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                    markLF();
2262
                    break;
2263
                case XmlCharTypes.CT_LT:
2264 8 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : Replaced operate with second operand → NO_COVERAGE
6. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                    --_inputPtr;
2265
                    break main_loop;
2266
                case XmlCharTypes.CT_AMP:
2267
                    {
2268 5 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                        int d = handleEntityInText(false);
2269 6 1. finishCoalescedCharacters : negated conditional → NO_COVERAGE
2. finishCoalescedCharacters : changed conditional boundary to IFEQ → NO_COVERAGE
3. finishCoalescedCharacters : changed conditional boundary to IFGE → NO_COVERAGE
4. finishCoalescedCharacters : changed conditional boundary to IFGT → NO_COVERAGE
5. finishCoalescedCharacters : changed conditional boundary to IFLE → NO_COVERAGE
6. finishCoalescedCharacters : changed conditional boundary to IFLT → NO_COVERAGE
                        if (d == 0) { // unexpandable general parsed entity
2270
                            // _inputPtr set by entity expansion method
2271 6 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_entityPending mutated with null check on object → NO_COVERAGE
                            _entityPending = true;
2272
                            break main_loop;
2273
                        }
2274
                        // Ok; does it need a surrogate though? (over 16 bits)
2275 12 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : Replaced Shift Right with Shift Left → NO_COVERAGE
6. finishCoalescedCharacters : negated conditional → NO_COVERAGE
7. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCoalescedCharacters : changed conditional boundary to IFGE → NO_COVERAGE
9. finishCoalescedCharacters : changed conditional boundary to IFGT → NO_COVERAGE
10. finishCoalescedCharacters : changed conditional boundary to IFLE → NO_COVERAGE
11. finishCoalescedCharacters : changed conditional boundary to IFLT → NO_COVERAGE
12. finishCoalescedCharacters : changed conditional boundary to IFNE → NO_COVERAGE
                        if ((d >> 16) != 0) {
2276 6 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : Replaced operate with second operand → NO_COVERAGE
6. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                            d -= 0x10000;
2277 17 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
8. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
9. finishCoalescedCharacters : Changed increment from 1 to -1 → NO_COVERAGE
10. finishCoalescedCharacters : Replaced Shift Right with Shift Left → NO_COVERAGE
11. finishCoalescedCharacters : Replaced bitwise OR with AND → NO_COVERAGE
12. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. finishCoalescedCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
15. finishCoalescedCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
16. finishCoalescedCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
17. finishCoalescedCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                            outputBuffer[outPtr++] = (char) (0xD800 | (d >> 10));
2278
                            // Need to ensure room for one more char
2279 7 1. finishCoalescedCharacters : changed conditional boundary → NO_COVERAGE
2. finishCoalescedCharacters : negated conditional → NO_COVERAGE
3. finishCoalescedCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishCoalescedCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                            if (outPtr >= outputBuffer.length) {
2280 1 1. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                                outputBuffer = _textBuilder.finishCurrentSegment();
2281 5 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                                outPtr = 0;
2282
                            }
2283 12 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
8. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE
9. finishCoalescedCharacters : Replaced bitwise AND with OR → NO_COVERAGE
10. finishCoalescedCharacters : Replaced bitwise OR with AND → NO_COVERAGE
11. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                            d = (0xDC00 | (d & 0x3FF));
2284
                        }
2285
                        c = (char) d;
2286
                    }
2287
                    break;
2288
                case XmlCharTypes.CT_RBRACKET: // ']]>'?
2289
                    {
2290
                        // Let's then just count number of brackets --
2291
                        // in case they are not followed by '>'
2292 5 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                        int count = 1;
2293
                        while (true) {
2294 9 1. finishCoalescedCharacters : changed conditional boundary → NO_COVERAGE
2. finishCoalescedCharacters : negated conditional → NO_COVERAGE
3. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. finishCoalescedCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. finishCoalescedCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                            if (_inputPtr >= _inputEnd) {
2295 1 1. finishCoalescedCharacters : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                                loadMoreGuaranteed();
2296
                            }
2297 1 1. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            c = inputBuffer[_inputPtr];
2298 11 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : negated conditional → NO_COVERAGE
6. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
8. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. finishCoalescedCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. finishCoalescedCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                            if (c != ']') {
2299
                                break;
2300
                            }
2301 8 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : Replaced operate with second operand → NO_COVERAGE
6. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ++_inputPtr; // to skip past bracket
2302 5 1. finishCoalescedCharacters : Changed increment from 1 to -1 → NO_COVERAGE
2. finishCoalescedCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishCoalescedCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishCoalescedCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishCoalescedCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                            ++count;
2303
                        }
2304 24 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE
8. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
9. finishCoalescedCharacters : changed conditional boundary → NO_COVERAGE
10. finishCoalescedCharacters : negated conditional → NO_COVERAGE
11. finishCoalescedCharacters : negated conditional → NO_COVERAGE
12. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. finishCoalescedCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
15. finishCoalescedCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
16. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
17. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
18. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
19. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
20. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
21. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
22. finishCoalescedCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
23. finishCoalescedCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
24. finishCoalescedCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (c == '>' && count > 1) {
2305 1 1. finishCoalescedCharacters : removed call to com/fasterxml/aalto/in/ReaderScanner::reportIllegalCDataEnd → NO_COVERAGE
                            reportIllegalCDataEnd();
2306
                        }
2307
                        // Nope. Need to output all brackets, then; except
2308
                        // for one that can be left for normal output
2309 13 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : changed conditional boundary → NO_COVERAGE
6. finishCoalescedCharacters : negated conditional → NO_COVERAGE
7. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCoalescedCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishCoalescedCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
13. finishCoalescedCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        while (count > 1) {
2310 10 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : Changed increment from 1 to -1 → NO_COVERAGE
6. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCoalescedCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
8. finishCoalescedCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
9. finishCoalescedCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
10. finishCoalescedCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                            outputBuffer[outPtr++] = ']';
2311 7 1. finishCoalescedCharacters : changed conditional boundary → NO_COVERAGE
2. finishCoalescedCharacters : negated conditional → NO_COVERAGE
3. finishCoalescedCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishCoalescedCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                            if (outPtr >= outputBuffer.length) {
2312 1 1. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                                outputBuffer = _textBuilder.finishCurrentSegment();
2313 5 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                                outPtr = 0;
2314
                            }
2315
                            // Need to ensure room for one more char
2316 5 1. finishCoalescedCharacters : Changed increment from -1 to 1 → NO_COVERAGE
2. finishCoalescedCharacters : UOI Mutator: Added unary decrement -1 -> -2 to local variable → NO_COVERAGE
3. finishCoalescedCharacters : UOI Mutator: Added unary increment -1 -> 0 to local variable → NO_COVERAGE
4. finishCoalescedCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishCoalescedCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                            --count;
2317
                        }
2318
                    }
2319
                    // Can just output the first ']' along normal output
2320 5 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    c = ']';
2321
                    break;
2322
                // default:
2323
                    // Other types are not important here...
2324
                }
2325 12 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : changed conditional boundary → NO_COVERAGE
6. finishCoalescedCharacters : negated conditional → NO_COVERAGE
7. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCoalescedCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishCoalescedCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            } else if (c >= 0xD800) {  // high-range, surrogates etc
2326 12 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : changed conditional boundary → NO_COVERAGE
6. finishCoalescedCharacters : negated conditional → NO_COVERAGE
7. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCoalescedCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishCoalescedCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
12. finishCoalescedCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (c < 0xE000) {
2327
                    // if ok, returns second surrogate; otherwise exception
2328
                    char d = checkSurrogate(c);
2329 5 1. finishCoalescedCharacters : Changed increment from 1 to -1 → NO_COVERAGE
2. finishCoalescedCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishCoalescedCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishCoalescedCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishCoalescedCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    outputBuffer[outPtr++] = c;
2330 7 1. finishCoalescedCharacters : changed conditional boundary → NO_COVERAGE
2. finishCoalescedCharacters : negated conditional → NO_COVERAGE
3. finishCoalescedCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishCoalescedCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (outPtr >= outputBuffer.length) {
2331 1 1. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                        outputBuffer = _textBuilder.finishCurrentSegment();
2332 5 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                        outPtr = 0;
2333
                    }
2334
                    c = d;
2335 12 1. finishCoalescedCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCoalescedCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCoalescedCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCoalescedCharacters : Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE
5. finishCoalescedCharacters : changed conditional boundary → NO_COVERAGE
6. finishCoalescedCharacters : negated conditional → NO_COVERAGE
7. finishCoalescedCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. finishCoalescedCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. finishCoalescedCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishCoalescedCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                } else if (c >= 0xFFFE) {
2336
                    c = handleInvalidXmlChar(c);
2337
                }
2338
            }
2339 5 1. finishCoalescedCharacters : Changed increment from 1 to -1 → NO_COVERAGE
2. finishCoalescedCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishCoalescedCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishCoalescedCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishCoalescedCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
            outputBuffer[outPtr++] = c;
2340
        }
2341 2 1. finishCoalescedCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
2. finishCoalescedCharacters : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → NO_COVERAGE
        _textBuilder.setCurrentLength(outPtr);
2342
    }
2343
2344
    /**
2345
     * Method that gets called after a primary text segment (of type
2346
     * CHARACTERS or CDATA, not applicable to SPACE) has been skipped.
2347
     * Method has to see if the following event would
2348
     * be textual as well, and if so, skip it (and any other following
2349
     * textual segments).
2350
     *
2351
     * @return True if we encountered an unexpandable entity
2352
     */
2353
    @Override
2354
    protected final boolean skipCoalescedText()
2355
        throws XMLStreamException
2356
    {
2357
        while (true) {
2358
            // no matter what, will need (and can get) one char
2359 9 1. skipCoalescedText : changed conditional boundary → NO_COVERAGE
2. skipCoalescedText : negated conditional → NO_COVERAGE
3. skipCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. skipCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. skipCoalescedText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. skipCoalescedText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. skipCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. skipCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. skipCoalescedText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (_inputPtr >= _inputEnd) {
2360 6 1. skipCoalescedText : negated conditional → NO_COVERAGE
2. skipCoalescedText : changed conditional boundary to IFEQ → NO_COVERAGE
3. skipCoalescedText : changed conditional boundary to IFGE → NO_COVERAGE
4. skipCoalescedText : changed conditional boundary to IFGT → NO_COVERAGE
5. skipCoalescedText : changed conditional boundary to IFLE → NO_COVERAGE
6. skipCoalescedText : changed conditional boundary to IFLT → NO_COVERAGE
                if (!loadMore()) { // most likely an error, will be handled later on
2361 6 1. skipCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCoalescedText : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. skipCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipCoalescedText : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                    return false;
2362
                }
2363
            }
2364
2365 13 1. skipCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCoalescedText : Bug fixed: CRCR replace with One, Substituted 60 with 1 → NO_COVERAGE
5. skipCoalescedText : negated conditional → NO_COVERAGE
6. skipCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. skipCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. skipCoalescedText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. skipCoalescedText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. skipCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. skipCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. skipCoalescedText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
            if (_inputBuffer[_inputPtr] == '<') { // markup of some kind
2366
                /* In worst case, need 3 chars ("<![") all in all to know
2367
                 * if we are getting a CDATA section
2368
                 */
2369 15 1. skipCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCoalescedText : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
5. skipCoalescedText : Replaced operate with second operand → NO_COVERAGE
6. skipCoalescedText : changed conditional boundary → NO_COVERAGE
7. skipCoalescedText : negated conditional → NO_COVERAGE
8. skipCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. skipCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
10. skipCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
11. skipCoalescedText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
12. skipCoalescedText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
13. skipCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
14. skipCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
15. skipCoalescedText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if ((_inputPtr + 3) >= _inputEnd) {
2370 11 1. skipCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCoalescedText : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
5. skipCoalescedText : negated conditional → NO_COVERAGE
6. skipCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipCoalescedText : changed conditional boundary to IFEQ → NO_COVERAGE
8. skipCoalescedText : changed conditional boundary to IFGE → NO_COVERAGE
9. skipCoalescedText : changed conditional boundary to IFGT → NO_COVERAGE
10. skipCoalescedText : changed conditional boundary to IFLE → NO_COVERAGE
11. skipCoalescedText : changed conditional boundary to IFLT → NO_COVERAGE
                    if (!loadAndRetain(3)) { // probably an error, but will be handled later
2371 6 1. skipCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCoalescedText : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. skipCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipCoalescedText : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                        return false;
2372
                    }
2373
                }
2374 38 1. skipCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. skipCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. skipCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
5. skipCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. skipCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. skipCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
8. skipCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
9. skipCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. skipCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
11. skipCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
12. skipCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
13. skipCoalescedText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
14. skipCoalescedText : Replaced operate with second operand → NO_COVERAGE
15. skipCoalescedText : Bug fixed: CRCR replace with One, Substituted 33 with 1 → NO_COVERAGE
16. skipCoalescedText : Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE
17. skipCoalescedText : Replaced operate with second operand → NO_COVERAGE
18. skipCoalescedText : Bug fixed: CRCR replace with One, Substituted 91 with 1 → NO_COVERAGE
19. skipCoalescedText : negated conditional → NO_COVERAGE
20. skipCoalescedText : negated conditional → NO_COVERAGE
21. skipCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
22. skipCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
23. skipCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
24. skipCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
25. skipCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
26. skipCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
27. skipCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
28. skipCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
29. skipCoalescedText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
30. skipCoalescedText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
31. skipCoalescedText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
32. skipCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
33. skipCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
34. skipCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
35. skipCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
36. skipCoalescedText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
37. skipCoalescedText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
38. skipCoalescedText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (_inputBuffer[_inputPtr+1] != '!'
2375
                    || _inputBuffer[_inputPtr+2] != '[') {
2376
                    // can't be CDATA, we are done here
2377 6 1. skipCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCoalescedText : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. skipCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipCoalescedText : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                    return false;
2378
                }
2379
                // but let's verify it still:
2380 8 1. skipCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCoalescedText : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
5. skipCoalescedText : Replaced operate with second operand → NO_COVERAGE
6. skipCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. skipCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                _inputPtr += 3;
2381 22 1. skipCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. skipCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. skipCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. skipCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. skipCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. skipCoalescedText : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
8. skipCoalescedText : Bug fixed: CRCR replace with One, Substituted 6 with 1 → NO_COVERAGE
9. skipCoalescedText : changed conditional boundary → NO_COVERAGE
10. skipCoalescedText : Changed increment from 1 to -1 → NO_COVERAGE
11. skipCoalescedText : negated conditional → NO_COVERAGE
12. skipCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. skipCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. skipCoalescedText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
15. skipCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
16. skipCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. skipCoalescedText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
18. skipCoalescedText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
19. skipCoalescedText : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
20. skipCoalescedText : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
21. skipCoalescedText : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
22. skipCoalescedText : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                for (int i = 0; i < 6; ++i) {
2382 9 1. skipCoalescedText : changed conditional boundary → NO_COVERAGE
2. skipCoalescedText : negated conditional → NO_COVERAGE
3. skipCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. skipCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. skipCoalescedText : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. skipCoalescedText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. skipCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. skipCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. skipCoalescedText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (_inputPtr >= _inputEnd) {
2383 1 1. skipCoalescedText : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                        loadMoreGuaranteed();
2384
                    }
2385 9 1. skipCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCoalescedText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipCoalescedText : Replaced operate with second operand → NO_COVERAGE
6. skipCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. skipCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. skipCoalescedText : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                    char c = _inputBuffer[_inputPtr++];
2386 6 1. skipCoalescedText : negated conditional → NO_COVERAGE
2. skipCoalescedText : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
3. skipCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
4. skipCoalescedText : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
5. skipCoalescedText : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
6. skipCoalescedText : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (c != CDATA_STR.charAt(i)) {
2387 1 1. skipCoalescedText : removed call to com/fasterxml/aalto/in/ReaderScanner::reportTreeUnexpChar → NO_COVERAGE
                        reportTreeUnexpChar(c, " (expected '"+CDATA_STR.charAt(i)+"' for CDATA section)");
2388
                    }
2389
                }
2390 1 1. skipCoalescedText : removed call to com/fasterxml/aalto/in/ReaderScanner::skipCData → NO_COVERAGE
                skipCData();
2391
            } else { // textual (or entity, error etc)
2392 6 1. skipCoalescedText : negated conditional → NO_COVERAGE
2. skipCoalescedText : changed conditional boundary to IFGE → NO_COVERAGE
3. skipCoalescedText : changed conditional boundary to IFGT → NO_COVERAGE
4. skipCoalescedText : changed conditional boundary to IFLE → NO_COVERAGE
5. skipCoalescedText : changed conditional boundary to IFLT → NO_COVERAGE
6. skipCoalescedText : changed conditional boundary to IFNE → NO_COVERAGE
                if (skipCharacters()) {
2393 6 1. skipCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCoalescedText : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipCoalescedText : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                    return true;
2394
                }
2395
            }
2396
        }
2397
    }
2398
2399
    /*
2400
    /**********************************************************************
2401
    /* 2nd level parsing for skipping content
2402
    /**********************************************************************
2403
     */
2404
2405
    @Override
2406
    protected final void skipComment()
2407
        throws XMLStreamException
2408
    {
2409 1 1. skipComment : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → NO_COVERAGE
        final int[] TYPES = sCharTypes.OTHER_CHARS;
2410 1 1. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
        final char[] inputBuffer = _inputBuffer;
2411
2412
        while (true) {
2413
            char c;
2414
2415
            // Then the tight ascii non-funny-char loop:
2416
            ascii_loop:
2417
            while (true) {
2418 1 1. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                int ptr = _inputPtr;
2419 1 1. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
                int max = _inputEnd;
2420 7 1. skipComment : changed conditional boundary → NO_COVERAGE
2. skipComment : negated conditional → NO_COVERAGE
3. skipComment : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. skipComment : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. skipComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. skipComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. skipComment : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (ptr >= max) {
2421 1 1. skipComment : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
2422 1 1. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                    ptr = _inputPtr;
2423 1 1. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
                    max = _inputEnd;
2424
                }
2425 7 1. skipComment : changed conditional boundary → NO_COVERAGE
2. skipComment : negated conditional → NO_COVERAGE
3. skipComment : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. skipComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
5. skipComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. skipComment : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
7. skipComment : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                while (ptr < max) {
2426 5 1. skipComment : Changed increment from 1 to -1 → NO_COVERAGE
2. skipComment : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. skipComment : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. skipComment : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. skipComment : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    c = inputBuffer[ptr++];
2427 11 1. skipComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipComment : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. skipComment : changed conditional boundary → NO_COVERAGE
6. skipComment : negated conditional → NO_COVERAGE
7. skipComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. skipComment : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipComment : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipComment : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. skipComment : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (c <= 0xFF) {
2428 6 1. skipComment : negated conditional → NO_COVERAGE
2. skipComment : changed conditional boundary to IFGE → NO_COVERAGE
3. skipComment : changed conditional boundary to IFGT → NO_COVERAGE
4. skipComment : changed conditional boundary to IFLE → NO_COVERAGE
5. skipComment : changed conditional boundary to IFLT → NO_COVERAGE
6. skipComment : changed conditional boundary to IFNE → NO_COVERAGE
                        if (TYPES[c] != 0) {
2429 1 1. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            _inputPtr = ptr;
2430
                            break ascii_loop;
2431
                        }
2432 12 1. skipComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipComment : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. skipComment : changed conditional boundary → NO_COVERAGE
6. skipComment : negated conditional → NO_COVERAGE
7. skipComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. skipComment : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipComment : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. skipComment : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    } else if (c >= 0xD800) { // surrogates and 0xFFFE/0xFFFF
2433 1 1. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        _inputPtr = ptr;
2434
                        break ascii_loop;
2435
                    }
2436
                }
2437 1 1. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                _inputPtr = ptr;
2438
            }
2439
2440 11 1. skipComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipComment : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. skipComment : changed conditional boundary → NO_COVERAGE
6. skipComment : negated conditional → NO_COVERAGE
7. skipComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. skipComment : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipComment : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipComment : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. skipComment : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (c <= 0xFF) {
2441
                switch (TYPES[c]) {
2442
                case XmlCharTypes.CT_INVALID:
2443
                    c = handleInvalidXmlChar(c);
2444
                case XmlCharTypes.CT_WS_CR:
2445
                    {
2446 9 1. skipComment : changed conditional boundary → NO_COVERAGE
2. skipComment : negated conditional → NO_COVERAGE
3. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. skipComment : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. skipComment : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. skipComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. skipComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. skipComment : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (_inputPtr >= _inputEnd) {
2447 1 1. skipComment : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
2448
                        }
2449 12 1. skipComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipComment : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. skipComment : negated conditional → NO_COVERAGE
6. skipComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. skipComment : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipComment : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. skipComment : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                        if (inputBuffer[_inputPtr] == '\n') {
2450 8 1. skipComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipComment : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipComment : Replaced operate with second operand → NO_COVERAGE
6. skipComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ++_inputPtr;
2451
                        }
2452 1 1. skipComment : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                        markLF();
2453
                    }
2454
                    break;
2455
                case XmlCharTypes.CT_WS_LF:
2456 1 1. skipComment : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                    markLF();
2457
                    break;
2458
                case XmlCharTypes.CT_HYPHEN: // '-->'?
2459 9 1. skipComment : changed conditional boundary → NO_COVERAGE
2. skipComment : negated conditional → NO_COVERAGE
3. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. skipComment : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. skipComment : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. skipComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. skipComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. skipComment : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (_inputPtr >= _inputEnd) {
2460 1 1. skipComment : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                        loadMoreGuaranteed();
2461
                    }
2462 13 1. skipComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipComment : Bug fixed: CRCR replace with One, Substituted 45 with 1 → NO_COVERAGE
5. skipComment : negated conditional → NO_COVERAGE
6. skipComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. skipComment : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. skipComment : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. skipComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. skipComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. skipComment : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                    if (_inputBuffer[_inputPtr] == '-') { // ok, must be end then
2463 8 1. skipComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipComment : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipComment : Replaced operate with second operand → NO_COVERAGE
6. skipComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        ++_inputPtr;
2464 9 1. skipComment : changed conditional boundary → NO_COVERAGE
2. skipComment : negated conditional → NO_COVERAGE
3. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. skipComment : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. skipComment : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. skipComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. skipComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. skipComment : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (_inputPtr >= _inputEnd) {
2465 1 1. skipComment : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
2466
                        }
2467 20 1. skipComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. skipComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. skipComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. skipComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. skipComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. skipComment : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. skipComment : Replaced operate with second operand → NO_COVERAGE
9. skipComment : Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE
10. skipComment : negated conditional → NO_COVERAGE
11. skipComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. skipComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. skipComment : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
16. skipComment : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
17. skipComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. skipComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
19. skipComment : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
20. skipComment : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (_inputBuffer[_inputPtr++] != '>') {
2468 1 1. skipComment : removed call to com/fasterxml/aalto/in/ReaderScanner::reportDoubleHyphenInComments → NO_COVERAGE
                            reportDoubleHyphenInComments();
2469
                        }
2470
                        return;
2471
                    }
2472
                    break;
2473
                }
2474
                
2475
            // default:
2476
                // Other types are not important here...
2477
            }
2478
        }
2479
    }
2480
2481
    @Override
2482
    protected final void skipPI() throws XMLStreamException
2483
    {
2484 1 1. skipPI : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → NO_COVERAGE
        final int[] TYPES = sCharTypes.OTHER_CHARS;
2485 1 1. skipPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
        final char[] inputBuffer = _inputBuffer;
2486
2487
        while (true) {
2488
            char c;
2489
2490
            // Then the tight ascii non-funny-char loop:
2491
            ascii_loop:
2492
            while (true) {
2493 1 1. skipPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                int ptr = _inputPtr;
2494 1 1. skipPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
                int max = _inputEnd;
2495 7 1. skipPI : changed conditional boundary → NO_COVERAGE
2. skipPI : negated conditional → NO_COVERAGE
3. skipPI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. skipPI : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. skipPI : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (ptr >= max) {
2496 1 1. skipPI : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
2497 1 1. skipPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                    ptr = _inputPtr;
2498 1 1. skipPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
                    max = _inputEnd;
2499
                }
2500 7 1. skipPI : changed conditional boundary → NO_COVERAGE
2. skipPI : negated conditional → NO_COVERAGE
3. skipPI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
5. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. skipPI : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
7. skipPI : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                while (ptr < max) {
2501 5 1. skipPI : Changed increment from 1 to -1 → NO_COVERAGE
2. skipPI : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. skipPI : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. skipPI : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. skipPI : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    c = inputBuffer[ptr++];
2502 11 1. skipPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPI : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. skipPI : changed conditional boundary → NO_COVERAGE
6. skipPI : negated conditional → NO_COVERAGE
7. skipPI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. skipPI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipPI : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipPI : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. skipPI : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (c <= 0xFF) {
2503 6 1. skipPI : negated conditional → NO_COVERAGE
2. skipPI : changed conditional boundary to IFGE → NO_COVERAGE
3. skipPI : changed conditional boundary to IFGT → NO_COVERAGE
4. skipPI : changed conditional boundary to IFLE → NO_COVERAGE
5. skipPI : changed conditional boundary to IFLT → NO_COVERAGE
6. skipPI : changed conditional boundary to IFNE → NO_COVERAGE
                        if (TYPES[c] != 0) {
2504 1 1. skipPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            _inputPtr = ptr;
2505
                            break ascii_loop;
2506
                        }
2507 12 1. skipPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPI : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. skipPI : changed conditional boundary → NO_COVERAGE
6. skipPI : negated conditional → NO_COVERAGE
7. skipPI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. skipPI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipPI : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. skipPI : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    } else if (c >= 0xD800) { // surrogates and 0xFFFE/0xFFFF
2508 1 1. skipPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        _inputPtr = ptr;
2509
                        break ascii_loop;
2510
                    }
2511
                }
2512 1 1. skipPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                _inputPtr = ptr;
2513
            }
2514
2515 11 1. skipPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPI : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. skipPI : changed conditional boundary → NO_COVERAGE
6. skipPI : negated conditional → NO_COVERAGE
7. skipPI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. skipPI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipPI : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipPI : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. skipPI : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (c <= 0xFF) {
2516
                switch (TYPES[c]) {
2517
                case XmlCharTypes.CT_WS_CR:
2518
                    {
2519 9 1. skipPI : changed conditional boundary → NO_COVERAGE
2. skipPI : negated conditional → NO_COVERAGE
3. skipPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. skipPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. skipPI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. skipPI : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. skipPI : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (_inputPtr >= _inputEnd) {
2520 1 1. skipPI : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
2521
                        }
2522 12 1. skipPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPI : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. skipPI : negated conditional → NO_COVERAGE
6. skipPI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. skipPI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipPI : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. skipPI : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                        if (inputBuffer[_inputPtr] == CHAR_LF) {
2523 8 1. skipPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPI : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipPI : Replaced operate with second operand → NO_COVERAGE
6. skipPI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. skipPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ++_inputPtr;
2524
                        }
2525 1 1. skipPI : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                        markLF();
2526
                    }
2527
                    break;
2528
                case XmlCharTypes.CT_WS_LF:
2529 1 1. skipPI : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                    markLF();
2530
                    break;
2531
                case XmlCharTypes.CT_QMARK: // '?>'?
2532 9 1. skipPI : changed conditional boundary → NO_COVERAGE
2. skipPI : negated conditional → NO_COVERAGE
3. skipPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. skipPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. skipPI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. skipPI : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. skipPI : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (_inputPtr >= _inputEnd) {
2533 1 1. skipPI : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                        loadMoreGuaranteed();
2534
                    }
2535 13 1. skipPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPI : Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE
5. skipPI : negated conditional → NO_COVERAGE
6. skipPI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. skipPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. skipPI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. skipPI : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. skipPI : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                    if (_inputBuffer[_inputPtr] == '>') {
2536 8 1. skipPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPI : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipPI : Replaced operate with second operand → NO_COVERAGE
6. skipPI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. skipPI : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        ++_inputPtr;
2537
                        return;
2538
                    }
2539
                    break;
2540
                // default:
2541
                    // Other types are not important here...
2542
                }
2543 12 1. skipPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPI : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. skipPI : changed conditional boundary → NO_COVERAGE
6. skipPI : negated conditional → NO_COVERAGE
7. skipPI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. skipPI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipPI : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. skipPI : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            } else if (c >= 0xD800) {  // high-range, surrogates etc
2544 12 1. skipPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPI : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE
5. skipPI : changed conditional boundary → NO_COVERAGE
6. skipPI : negated conditional → NO_COVERAGE
7. skipPI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. skipPI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipPI : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
12. skipPI : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (c < 0xE000) {
2545
                    // if ok, returns second surrogate; otherwise exception
2546
                    /*char d =*/ checkSurrogate(c);
2547 12 1. skipPI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPI : Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE
5. skipPI : changed conditional boundary → NO_COVERAGE
6. skipPI : negated conditional → NO_COVERAGE
7. skipPI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. skipPI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipPI : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipPI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. skipPI : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                } else if (c >= 0xFFFE) {
2548
                    c = handleInvalidXmlChar(c);
2549
                }
2550
            }
2551
            // skipping, no need to output
2552
        }
2553
    }
2554
2555
    @Override
2556
    protected final boolean skipCharacters() throws XMLStreamException
2557
    {
2558 1 1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → SURVIVED
        final int[] TYPES = sCharTypes.TEXT_CHARS;
2559 1 1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
        final char[] inputBuffer = _inputBuffer;
2560
2561
        while (true) {
2562
            char c;
2563
2564
            // Then the tight ascii non-funny-char loop:
2565
            ascii_loop:
2566
            while (true) {
2567 1 1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                int ptr = _inputPtr;
2568 1 1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
                int max = _inputEnd;
2569 7 1. skipCharacters : changed conditional boundary → SURVIVED
2. skipCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
3. skipCharacters : negated conditional → KILLED
4. skipCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
5. skipCharacters : changed conditional boundary to IF_ICMPGE → KILLED
6. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
7. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
                if (ptr >= max) {
2570 1 1. skipCharacters : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
2571 1 1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                    ptr = _inputPtr;
2572 1 1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
                    max = _inputEnd;
2573
                }
2574 7 1. skipCharacters : changed conditional boundary → SURVIVED
2. skipCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. skipCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. skipCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
5. skipCharacters : negated conditional → TIMED_OUT
6. skipCharacters : changed conditional boundary to IF_ICMPLT → TIMED_OUT
7. skipCharacters : changed conditional boundary to IF_ICMPNE → TIMED_OUT
                while (ptr < max) {
2575 5 1. skipCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → TIMED_OUT
2. skipCharacters : UOI Mutator: Removed unary increment of local variable → TIMED_OUT
3. skipCharacters : Changed increment from 1 to -1 → KILLED
4. skipCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
5. skipCharacters : UOI Mutator: Reversed increment of local variable → KILLED
                    c = inputBuffer[ptr++];
2576 11 1. skipCharacters : changed conditional boundary → SURVIVED
2. skipCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
3. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. skipCharacters : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
7. skipCharacters : negated conditional → KILLED
8. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. skipCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
10. skipCharacters : changed conditional boundary to IF_ICMPLT → KILLED
11. skipCharacters : changed conditional boundary to IF_ICMPNE → KILLED
                    if (c <= 0xFF) {
2577 6 1. skipCharacters : changed conditional boundary to IFLE → SURVIVED
2. skipCharacters : changed conditional boundary to IFLT → SURVIVED
3. skipCharacters : negated conditional → KILLED
4. skipCharacters : changed conditional boundary to IFGE → KILLED
5. skipCharacters : changed conditional boundary to IFGT → KILLED
6. skipCharacters : changed conditional boundary to IFNE → KILLED
                        if (TYPES[c] != 0) {
2578 1 1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                            _inputPtr = ptr;
2579
                            break ascii_loop;
2580
                        }
2581 12 1. skipCharacters : negated conditional → SURVIVED
2. skipCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
3. skipCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. skipCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
5. skipCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
6. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. skipCharacters : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → KILLED
10. skipCharacters : changed conditional boundary → KILLED
11. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. skipCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
                    } else if (c >= 0xD800) { // surrogates and 0xFFFE/0xFFFF
2582 1 1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
                        _inputPtr = ptr;
2583
                        break ascii_loop;
2584
                    }
2585
                }
2586 1 1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                _inputPtr = ptr;
2587
            }
2588
2589 11 1. skipCharacters : changed conditional boundary → SURVIVED
2. skipCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
3. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. skipCharacters : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
7. skipCharacters : negated conditional → KILLED
8. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. skipCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
10. skipCharacters : changed conditional boundary to IF_ICMPLT → KILLED
11. skipCharacters : changed conditional boundary to IF_ICMPNE → KILLED
            if (c <= 0xFF) {
2590
                switch (TYPES[c]) {
2591
                case XmlCharTypes.CT_INVALID:
2592
                    c = handleInvalidXmlChar(c);
2593
                case XmlCharTypes.CT_WS_CR:
2594
                    {
2595 9 1. skipCharacters : changed conditional boundary → NO_COVERAGE
2. skipCharacters : negated conditional → NO_COVERAGE
3. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. skipCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. skipCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. skipCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. skipCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. skipCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (_inputPtr >= _inputEnd) {
2596 1 1. skipCharacters : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
2597
                        }
2598 12 1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. skipCharacters : negated conditional → NO_COVERAGE
6. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. skipCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. skipCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                        if (inputBuffer[_inputPtr] == CHAR_LF) {
2599 8 1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipCharacters : Replaced operate with second operand → NO_COVERAGE
6. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ++_inputPtr;
2600
                        }
2601 1 1. skipCharacters : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                        markLF();
2602
                    }
2603
                    break;
2604
                case XmlCharTypes.CT_WS_LF:
2605 1 1. skipCharacters : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                    markLF();
2606
                    break;
2607
                case XmlCharTypes.CT_LT:
2608 8 1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. skipCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. skipCharacters : Replaced operate with second operand → KILLED
8. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                    --_inputPtr;
2609 6 1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. skipCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
                    return false;
2610
                case XmlCharTypes.CT_AMP:
2611
                    {
2612 5 1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                        int d = handleEntityInText(false);
2613 6 1. skipCharacters : negated conditional → NO_COVERAGE
2. skipCharacters : changed conditional boundary to IFEQ → NO_COVERAGE
3. skipCharacters : changed conditional boundary to IFGE → NO_COVERAGE
4. skipCharacters : changed conditional boundary to IFGT → NO_COVERAGE
5. skipCharacters : changed conditional boundary to IFLE → NO_COVERAGE
6. skipCharacters : changed conditional boundary to IFLT → NO_COVERAGE
                        if (d == 0) { // unexpandable general parsed entity
2614 6 1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                            return true;
2615
                        }
2616
                    }
2617
                    break;
2618
                case XmlCharTypes.CT_RBRACKET: // ']]>'?
2619
                    {
2620
                        // Let's then just count number of brackets --
2621
                        // in case they are not followed by '>'
2622 5 1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                        int count = 1;
2623
                        while (true) {
2624 9 1. skipCharacters : changed conditional boundary → NO_COVERAGE
2. skipCharacters : negated conditional → NO_COVERAGE
3. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. skipCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. skipCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. skipCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. skipCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. skipCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                            if (_inputPtr >= _inputEnd) {
2625 1 1. skipCharacters : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
2626
                            }
2627 1 1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            c = inputBuffer[_inputPtr];
2628 11 1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE
5. skipCharacters : negated conditional → NO_COVERAGE
6. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
8. skipCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. skipCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. skipCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. skipCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                            if (c != ']') {
2629
                                break;
2630
                            }
2631 8 1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipCharacters : Replaced operate with second operand → NO_COVERAGE
6. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. skipCharacters : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ++_inputPtr; // to skip past bracket
2632 5 1. skipCharacters : Changed increment from 1 to -1 → NO_COVERAGE
2. skipCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. skipCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. skipCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. skipCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                            ++count;
2633
                        }
2634 24 1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. skipCharacters : Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE
8. skipCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
9. skipCharacters : changed conditional boundary → NO_COVERAGE
10. skipCharacters : negated conditional → NO_COVERAGE
11. skipCharacters : negated conditional → NO_COVERAGE
12. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. skipCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
15. skipCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
16. skipCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
17. skipCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
18. skipCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
19. skipCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
20. skipCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
21. skipCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
22. skipCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
23. skipCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
24. skipCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (c == '>' && count > 1) {
2635 1 1. skipCharacters : removed call to com/fasterxml/aalto/in/ReaderScanner::reportIllegalCDataEnd → NO_COVERAGE
                            reportIllegalCDataEnd();
2636
                        }
2637
                    }
2638
                    // Can just output the first ']' along normal output
2639
                    break;
2640
                    
2641
                    // default:
2642
                    // Other types are not important here...
2643
                }
2644 12 1. skipCharacters : negated conditional → SURVIVED
2. skipCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
3. skipCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. skipCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
5. skipCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
6. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. skipCharacters : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → KILLED
10. skipCharacters : changed conditional boundary → KILLED
11. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. skipCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
            } else if (c >= 0xD800) {  // high-range, surrogates etc
2645 12 1. skipCharacters : changed conditional boundary → SURVIVED
2. skipCharacters : negated conditional → SURVIVED
3. skipCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. skipCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
5. skipCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
6. skipCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
7. skipCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
8. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR
9. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
10. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
11. skipCharacters : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → KILLED
12. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                if (c < 0xE000) {
2646
                    // if ok, returns second surrogate; otherwise exception
2647
                    /*char d =*/ checkSurrogate(c);
2648 12 1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE
5. skipCharacters : changed conditional boundary → NO_COVERAGE
6. skipCharacters : negated conditional → NO_COVERAGE
7. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. skipCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. skipCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                } else if (c >= 0xFFFE) {
2649
                    c = handleInvalidXmlChar(c);
2650
                }
2651
            }
2652
        }
2653
    }
2654
2655
    @Override
2656
    protected final void skipCData() throws XMLStreamException
2657
    {
2658 1 1. skipCData : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → NO_COVERAGE
        final int[] TYPES = sCharTypes.OTHER_CHARS;
2659 1 1. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
        final char[] inputBuffer = _inputBuffer;
2660
2661
        while (true) {
2662
            char c;
2663
2664
            // Then the tight ascii non-funny-char loop:
2665
            ascii_loop:
2666
            while (true) {
2667 1 1. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                int ptr = _inputPtr;
2668 1 1. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
                int max = _inputEnd;
2669 7 1. skipCData : changed conditional boundary → NO_COVERAGE
2. skipCData : negated conditional → NO_COVERAGE
3. skipCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. skipCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. skipCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (ptr >= max) {
2670 1 1. skipCData : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
2671 1 1. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                    ptr = _inputPtr;
2672 1 1. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
                    max = _inputEnd;
2673
                }
2674 7 1. skipCData : changed conditional boundary → NO_COVERAGE
2. skipCData : negated conditional → NO_COVERAGE
3. skipCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
5. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. skipCData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
7. skipCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                while (ptr < max) {
2675 5 1. skipCData : Changed increment from 1 to -1 → NO_COVERAGE
2. skipCData : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. skipCData : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. skipCData : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. skipCData : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    c = inputBuffer[ptr++];
2676 11 1. skipCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCData : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. skipCData : changed conditional boundary → NO_COVERAGE
6. skipCData : negated conditional → NO_COVERAGE
7. skipCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. skipCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipCData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. skipCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    if (c <= 0xFF) {
2677 6 1. skipCData : negated conditional → NO_COVERAGE
2. skipCData : changed conditional boundary to IFGE → NO_COVERAGE
3. skipCData : changed conditional boundary to IFGT → NO_COVERAGE
4. skipCData : changed conditional boundary to IFLE → NO_COVERAGE
5. skipCData : changed conditional boundary to IFLT → NO_COVERAGE
6. skipCData : changed conditional boundary to IFNE → NO_COVERAGE
                        if (TYPES[c] != 0) {
2678 1 1. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            _inputPtr = ptr;
2679
                            break ascii_loop;
2680
                        }
2681 12 1. skipCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCData : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. skipCData : changed conditional boundary → NO_COVERAGE
6. skipCData : negated conditional → NO_COVERAGE
7. skipCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. skipCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. skipCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                    } else if (c >= 0xD800) { // surrogates and 0xFFFE/0xFFFF
2682 1 1. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        _inputPtr = ptr;
2683
                        break ascii_loop;
2684
                    }
2685
                }
2686 1 1. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                _inputPtr = ptr;
2687
            }
2688
2689 11 1. skipCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCData : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. skipCData : changed conditional boundary → NO_COVERAGE
6. skipCData : negated conditional → NO_COVERAGE
7. skipCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. skipCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipCData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. skipCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (c <= 0xFF) {
2690
                switch (TYPES[c]) {
2691
                case XmlCharTypes.CT_INVALID:
2692
                    c = handleInvalidXmlChar(c);
2693
                case XmlCharTypes.CT_WS_CR:
2694
                    {
2695 1 1. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                        int ptr = _inputPtr;
2696 8 1. skipCData : changed conditional boundary → NO_COVERAGE
2. skipCData : negated conditional → NO_COVERAGE
3. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. skipCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
5. skipCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
6. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. skipCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (ptr >= _inputEnd) {
2697 1 1. skipCData : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
2698 1 1. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ptr = _inputPtr;
2699
                        }
2700 11 1. skipCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCData : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. skipCData : negated conditional → NO_COVERAGE
6. skipCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. skipCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipCData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                        if (inputBuffer[ptr] == CHAR_LF) {
2701 5 1. skipCData : Changed increment from 1 to -1 → NO_COVERAGE
2. skipCData : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. skipCData : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. skipCData : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. skipCData : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                            ++ptr;
2702 8 1. skipCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipCData : Replaced operate with second operand → NO_COVERAGE
6. skipCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ++_inputPtr;
2703
                        }
2704 1 1. skipCData : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                        markLF(ptr);
2705
                    }
2706
                    break;
2707
                case XmlCharTypes.CT_WS_LF:
2708 1 1. skipCData : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                    markLF();
2709
                    break;
2710
                case XmlCharTypes.CT_RBRACKET: // ']]>'?
2711
                    {
2712
                        // end is nigh?
2713 5 1. skipCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCData : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. skipCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                        int count = 0;
2714
                        
2715
                        do {
2716 9 1. skipCData : changed conditional boundary → NO_COVERAGE
2. skipCData : negated conditional → NO_COVERAGE
3. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. skipCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. skipCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. skipCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                            if (_inputPtr >= _inputEnd) {
2717 1 1. skipCData : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                                loadMoreGuaranteed();
2718
                            }
2719 5 1. skipCData : Changed increment from 1 to -1 → NO_COVERAGE
2. skipCData : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. skipCData : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. skipCData : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. skipCData : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                            ++count;
2720 9 1. skipCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipCData : Replaced operate with second operand → NO_COVERAGE
6. skipCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            c = _inputBuffer[_inputPtr++];
2721 11 1. skipCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCData : Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE
5. skipCData : negated conditional → NO_COVERAGE
6. skipCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
8. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. skipCData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. skipCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        } while (c == ']');
2722
                        
2723 11 1. skipCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCData : Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE
5. skipCData : negated conditional → NO_COVERAGE
6. skipCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. skipCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipCData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                        if (c == '>') {
2724 13 1. skipCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipCData : changed conditional boundary → NO_COVERAGE
6. skipCData : negated conditional → NO_COVERAGE
7. skipCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. skipCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. skipCData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
13. skipCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                            if (count > 1) { // gotcha
2725
                                return;
2726
                            }
2727
                            // can still skip plain ']>'...
2728
                        } else {
2729 8 1. skipCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipCData : Replaced operate with second operand → NO_COVERAGE
6. skipCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. skipCData : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            --_inputPtr; // need to push back last char
2730
                        }
2731
                    }
2732
                    break;
2733
                    
2734
                    // default:
2735
                // Other types are not important here...
2736
                }
2737 12 1. skipCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCData : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. skipCData : changed conditional boundary → NO_COVERAGE
6. skipCData : negated conditional → NO_COVERAGE
7. skipCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. skipCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. skipCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            } else if (c >= 0xD800) {  // high-range, surrogates etc
2738 12 1. skipCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCData : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE
5. skipCData : changed conditional boundary → NO_COVERAGE
6. skipCData : negated conditional → NO_COVERAGE
7. skipCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. skipCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipCData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
12. skipCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (c < 0xE000) {
2739
                    // if ok, returns second surrogate; otherwise exception
2740
                    /*char d =*/ checkSurrogate(c);
2741 12 1. skipCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCData : Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE
5. skipCData : changed conditional boundary → NO_COVERAGE
6. skipCData : negated conditional → NO_COVERAGE
7. skipCData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. skipCData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipCData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipCData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. skipCData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                } else if (c >= 0xFFFE) {
2742
                    c = handleInvalidXmlChar(c);
2743
                }
2744
            }
2745
        }
2746
    }
2747
2748
    @Override
2749
    protected final void skipSpace() throws XMLStreamException
2750
    {
2751
        // mTmpChar has a space, but it's been checked, can ignore
2752 1 1. skipSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
        int ptr = _inputPtr;
2753
2754
        while (true) {
2755 8 1. skipSpace : changed conditional boundary → NO_COVERAGE
2. skipSpace : negated conditional → NO_COVERAGE
3. skipSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. skipSpace : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
5. skipSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
6. skipSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. skipSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. skipSpace : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (ptr >= _inputEnd) {
2756 6 1. skipSpace : negated conditional → NO_COVERAGE
2. skipSpace : changed conditional boundary to IFEQ → NO_COVERAGE
3. skipSpace : changed conditional boundary to IFGE → NO_COVERAGE
4. skipSpace : changed conditional boundary to IFGT → NO_COVERAGE
5. skipSpace : changed conditional boundary to IFLE → NO_COVERAGE
6. skipSpace : changed conditional boundary to IFLT → NO_COVERAGE
                if (!loadMore()) {
2757
                    break;
2758
                }
2759 1 1. skipSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                ptr = _inputPtr;
2760
            }
2761 1 1. skipSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
            char c = _inputBuffer[ptr];
2762 13 1. skipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipSpace : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
5. skipSpace : changed conditional boundary → NO_COVERAGE
6. skipSpace : negated conditional → NO_COVERAGE
7. skipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. skipSpace : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. skipSpace : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
13. skipSpace : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (c > ' ') { // !!! TODO: xml 1.1 ws
2763
                break;
2764
            }
2765 5 1. skipSpace : Changed increment from 1 to -1 → NO_COVERAGE
2. skipSpace : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. skipSpace : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. skipSpace : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. skipSpace : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
            ++ptr;
2766
2767 11 1. skipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipSpace : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. skipSpace : negated conditional → NO_COVERAGE
6. skipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipSpace : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. skipSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. skipSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. skipSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipSpace : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
            if (c == '\n') {
2768 1 1. skipSpace : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                markLF(ptr);
2769 11 1. skipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipSpace : Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE
5. skipSpace : negated conditional → NO_COVERAGE
6. skipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipSpace : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. skipSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. skipSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. skipSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipSpace : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
            } else if (c == '\r') {
2770 8 1. skipSpace : changed conditional boundary → NO_COVERAGE
2. skipSpace : negated conditional → NO_COVERAGE
3. skipSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. skipSpace : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
5. skipSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
6. skipSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. skipSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. skipSpace : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (ptr >= _inputEnd) {
2771 6 1. skipSpace : negated conditional → NO_COVERAGE
2. skipSpace : changed conditional boundary to IFEQ → NO_COVERAGE
3. skipSpace : changed conditional boundary to IFGE → NO_COVERAGE
4. skipSpace : changed conditional boundary to IFGT → NO_COVERAGE
5. skipSpace : changed conditional boundary to IFLE → NO_COVERAGE
6. skipSpace : changed conditional boundary to IFLT → NO_COVERAGE
                    if (!loadMore()) {
2772
                        break;
2773
                    }
2774 1 1. skipSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                    ptr = _inputPtr;
2775
                }
2776 12 1. skipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipSpace : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. skipSpace : negated conditional → NO_COVERAGE
6. skipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. skipSpace : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. skipSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. skipSpace : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                if (_inputBuffer[ptr] == '\n') {
2777 5 1. skipSpace : Changed increment from 1 to -1 → NO_COVERAGE
2. skipSpace : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. skipSpace : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. skipSpace : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. skipSpace : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                    ++ptr;
2778
                }
2779 1 1. skipSpace : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                markLF(ptr);
2780 22 1. skipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. skipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. skipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. skipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. skipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. skipSpace : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
8. skipSpace : Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE
9. skipSpace : negated conditional → NO_COVERAGE
10. skipSpace : negated conditional → NO_COVERAGE
11. skipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. skipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. skipSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
14. skipSpace : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
15. skipSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
16. skipSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. skipSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. skipSpace : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
19. skipSpace : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
20. skipSpace : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
21. skipSpace : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
22. skipSpace : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            } else if (c != ' ' && c != '\t') {
2781 1 1. skipSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                _inputPtr = ptr;
2782 1 1. skipSpace : removed call to com/fasterxml/aalto/in/ReaderScanner::throwInvalidSpace → NO_COVERAGE
                throwInvalidSpace(c);
2783
            }
2784
        }
2785 1 1. skipSpace : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
        _inputPtr = ptr;
2786
    }
2787
2788
    /*
2789
    /**********************************************************************
2790
    /* Entity/name handling
2791
    /**********************************************************************
2792
     */
2793
2794
    /**
2795
     * @return First byte following skipped white space
2796
     */
2797
    protected char skipInternalWs(boolean reqd, String msg)
2798
        throws XMLStreamException
2799
    {
2800 9 1. skipInternalWs : changed conditional boundary → SURVIVED
2. skipInternalWs : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipInternalWs : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. skipInternalWs : changed conditional boundary to IF_ICMPNE → SURVIVED
5. skipInternalWs : negated conditional → KILLED
6. skipInternalWs : changed conditional boundary to IF_ICMPEQ → KILLED
7. skipInternalWs : changed conditional boundary to IF_ICMPGE → KILLED
8. skipInternalWs : changed conditional boundary to IF_ICMPGT → KILLED
9. skipInternalWs : changed conditional boundary to IF_ICMPGT → KILLED
        if (_inputPtr >= _inputEnd) {
2801 1 1. skipInternalWs : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
            loadMoreGuaranteed();
2802
        }
2803 9 1. skipInternalWs : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. skipInternalWs : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipInternalWs : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. skipInternalWs : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. skipInternalWs : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. skipInternalWs : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. skipInternalWs : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. skipInternalWs : Replaced operate with second operand → KILLED
9. skipInternalWs : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        char c = _inputBuffer[_inputPtr++];
2804 13 1. skipInternalWs : changed conditional boundary to IF_ICMPEQ → SURVIVED
2. skipInternalWs : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR
3. skipInternalWs : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. skipInternalWs : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. skipInternalWs : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
6. skipInternalWs : changed conditional boundary → KILLED
7. skipInternalWs : negated conditional → KILLED
8. skipInternalWs : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. skipInternalWs : changed conditional boundary to IF_ICMPGE → KILLED
10. skipInternalWs : changed conditional boundary to IF_ICMPGT → KILLED
11. skipInternalWs : changed conditional boundary to IF_ICMPGT → KILLED
12. skipInternalWs : changed conditional boundary to IF_ICMPLT → KILLED
13. skipInternalWs : changed conditional boundary to IF_ICMPNE → KILLED
        if (c > INT_SPACE) {
2805 6 1. skipInternalWs : changed conditional boundary to IFGT → SURVIVED
2. skipInternalWs : changed conditional boundary to IFLT → SURVIVED
3. skipInternalWs : negated conditional → KILLED
4. skipInternalWs : changed conditional boundary to IFEQ → KILLED
5. skipInternalWs : changed conditional boundary to IFGE → KILLED
6. skipInternalWs : changed conditional boundary to IFLE → KILLED
            if (!reqd) {
2806 1 1. skipInternalWs : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
                return c;
2807
            }
2808 1 1. skipInternalWs : removed call to com/fasterxml/aalto/in/ReaderScanner::reportTreeUnexpChar → NO_COVERAGE
            reportTreeUnexpChar(c, " (expected white space "+msg+")");
2809
        }
2810
        do {
2811
            // But let's first handle the space we already got:
2812 11 1. skipInternalWs : negated conditional → SURVIVED
2. skipInternalWs : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. skipInternalWs : changed conditional boundary to IF_ICMPGE → SURVIVED
4. skipInternalWs : changed conditional boundary to IF_ICMPGT → SURVIVED
5. skipInternalWs : changed conditional boundary to IF_ICMPGT → SURVIVED
6. skipInternalWs : changed conditional boundary to IF_ICMPLT → SURVIVED
7. skipInternalWs : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. skipInternalWs : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. skipInternalWs : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. skipInternalWs : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
11. skipInternalWs : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            if (c == '\n') {
2813 1 1. skipInternalWs : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                markLF();
2814 11 1. skipInternalWs : negated conditional → SURVIVED
2. skipInternalWs : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. skipInternalWs : changed conditional boundary to IF_ICMPGE → SURVIVED
4. skipInternalWs : changed conditional boundary to IF_ICMPGT → SURVIVED
5. skipInternalWs : changed conditional boundary to IF_ICMPGT → SURVIVED
6. skipInternalWs : changed conditional boundary to IF_ICMPLT → SURVIVED
7. skipInternalWs : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. skipInternalWs : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. skipInternalWs : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. skipInternalWs : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
11. skipInternalWs : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            } else if (c == '\r') {
2815 9 1. skipInternalWs : changed conditional boundary → NO_COVERAGE
2. skipInternalWs : negated conditional → NO_COVERAGE
3. skipInternalWs : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. skipInternalWs : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. skipInternalWs : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. skipInternalWs : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. skipInternalWs : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. skipInternalWs : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. skipInternalWs : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (_inputPtr >= _inputEnd) {
2816 1 1. skipInternalWs : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                    loadMoreGuaranteed();
2817
                }
2818 13 1. skipInternalWs : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipInternalWs : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipInternalWs : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipInternalWs : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. skipInternalWs : negated conditional → NO_COVERAGE
6. skipInternalWs : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipInternalWs : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. skipInternalWs : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. skipInternalWs : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. skipInternalWs : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. skipInternalWs : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. skipInternalWs : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. skipInternalWs : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                if (_inputBuffer[_inputPtr] == '\n') {
2819 8 1. skipInternalWs : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipInternalWs : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipInternalWs : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipInternalWs : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipInternalWs : Replaced operate with second operand → NO_COVERAGE
6. skipInternalWs : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipInternalWs : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. skipInternalWs : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                    ++_inputPtr;
2820
                }
2821 1 1. skipInternalWs : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                markLF();
2822 22 1. skipInternalWs : negated conditional → SURVIVED
2. skipInternalWs : changed conditional boundary to IF_ICMPGE → SURVIVED
3. skipInternalWs : changed conditional boundary to IF_ICMPGE → SURVIVED
4. skipInternalWs : changed conditional boundary to IF_ICMPGT → SURVIVED
5. skipInternalWs : changed conditional boundary to IF_ICMPGT → SURVIVED
6. skipInternalWs : changed conditional boundary to IF_ICMPLT → SURVIVED
7. skipInternalWs : changed conditional boundary to IF_ICMPNE → SURVIVED
8. skipInternalWs : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. skipInternalWs : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
10. skipInternalWs : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
11. skipInternalWs : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
12. skipInternalWs : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
13. skipInternalWs : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
14. skipInternalWs : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
15. skipInternalWs : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
16. skipInternalWs : negated conditional → KILLED
17. skipInternalWs : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. skipInternalWs : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
19. skipInternalWs : changed conditional boundary to IF_ICMPGT → KILLED
20. skipInternalWs : changed conditional boundary to IF_ICMPGT → KILLED
21. skipInternalWs : changed conditional boundary to IF_ICMPLT → KILLED
22. skipInternalWs : changed conditional boundary to IF_ICMPNE → KILLED
            } else if (c != ' ' && c != '\t') {
2823 1 1. skipInternalWs : removed call to com/fasterxml/aalto/in/ReaderScanner::throwInvalidSpace → NO_COVERAGE
                throwInvalidSpace(c);
2824
            }
2825
2826 9 1. skipInternalWs : changed conditional boundary → SURVIVED
2. skipInternalWs : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipInternalWs : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. skipInternalWs : changed conditional boundary to IF_ICMPNE → SURVIVED
5. skipInternalWs : negated conditional → KILLED
6. skipInternalWs : changed conditional boundary to IF_ICMPEQ → KILLED
7. skipInternalWs : changed conditional boundary to IF_ICMPGE → KILLED
8. skipInternalWs : changed conditional boundary to IF_ICMPGT → KILLED
9. skipInternalWs : changed conditional boundary to IF_ICMPGT → KILLED
            if (_inputPtr >= _inputEnd) {
2827 1 1. skipInternalWs : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                loadMoreGuaranteed();
2828
            }
2829 9 1. skipInternalWs : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. skipInternalWs : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipInternalWs : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. skipInternalWs : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. skipInternalWs : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. skipInternalWs : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. skipInternalWs : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. skipInternalWs : Replaced operate with second operand → KILLED
9. skipInternalWs : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            c = _inputBuffer[_inputPtr++];
2830 13 1. skipInternalWs : changed conditional boundary → SURVIVED
2. skipInternalWs : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. skipInternalWs : changed conditional boundary to IF_ICMPLT → SURVIVED
4. skipInternalWs : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. skipInternalWs : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. skipInternalWs : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. skipInternalWs : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
8. skipInternalWs : negated conditional → KILLED
9. skipInternalWs : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. skipInternalWs : changed conditional boundary to IF_ICMPGE → KILLED
11. skipInternalWs : changed conditional boundary to IF_ICMPGT → KILLED
12. skipInternalWs : changed conditional boundary to IF_ICMPGT → KILLED
13. skipInternalWs : changed conditional boundary to IF_ICMPNE → KILLED
        } while (c <= INT_SPACE);
2831
2832 1 1. skipInternalWs : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
        return c;
2833
    }
2834
2835
    private final void matchAsciiKeyword(String keyw)
2836
        throws XMLStreamException
2837
    {
2838 17 1. matchAsciiKeyword : changed conditional boundary to IF_ICMPEQ → SURVIVED
2. matchAsciiKeyword : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. matchAsciiKeyword : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. matchAsciiKeyword : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. matchAsciiKeyword : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. matchAsciiKeyword : changed conditional boundary → KILLED
7. matchAsciiKeyword : Changed increment from 1 to -1 → KILLED
8. matchAsciiKeyword : negated conditional → KILLED
9. matchAsciiKeyword : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. matchAsciiKeyword : changed conditional boundary to IF_ICMPGT → KILLED
11. matchAsciiKeyword : changed conditional boundary to IF_ICMPGT → KILLED
12. matchAsciiKeyword : changed conditional boundary to IF_ICMPLT → KILLED
13. matchAsciiKeyword : changed conditional boundary to IF_ICMPNE → KILLED
14. matchAsciiKeyword : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
15. matchAsciiKeyword : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
16. matchAsciiKeyword : UOI Mutator: Removed unary increment of local variable → KILLED
17. matchAsciiKeyword : UOI Mutator: Reversed increment of local variable → KILLED
        for (int i = 1, len = keyw.length(); i < len; ++i) {
2839 9 1. matchAsciiKeyword : changed conditional boundary → SURVIVED
2. matchAsciiKeyword : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. matchAsciiKeyword : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. matchAsciiKeyword : changed conditional boundary to IF_ICMPNE → SURVIVED
5. matchAsciiKeyword : negated conditional → KILLED
6. matchAsciiKeyword : changed conditional boundary to IF_ICMPEQ → KILLED
7. matchAsciiKeyword : changed conditional boundary to IF_ICMPGE → KILLED
8. matchAsciiKeyword : changed conditional boundary to IF_ICMPGT → KILLED
9. matchAsciiKeyword : changed conditional boundary to IF_ICMPGT → KILLED
            if (_inputPtr >= _inputEnd) {
2840 1 1. matchAsciiKeyword : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                loadMoreGuaranteed();
2841
            }
2842 9 1. matchAsciiKeyword : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. matchAsciiKeyword : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. matchAsciiKeyword : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. matchAsciiKeyword : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. matchAsciiKeyword : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. matchAsciiKeyword : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. matchAsciiKeyword : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. matchAsciiKeyword : Replaced operate with second operand → KILLED
9. matchAsciiKeyword : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            char c = _inputBuffer[_inputPtr++];
2843 6 1. matchAsciiKeyword : changed conditional boundary to IF_ICMPGE → SURVIVED
2. matchAsciiKeyword : negated conditional → KILLED
3. matchAsciiKeyword : changed conditional boundary to IF_ICMPGT → KILLED
4. matchAsciiKeyword : changed conditional boundary to IF_ICMPGT → KILLED
5. matchAsciiKeyword : changed conditional boundary to IF_ICMPLT → KILLED
6. matchAsciiKeyword : changed conditional boundary to IF_ICMPNE → KILLED
            if (c != keyw.charAt(i)) {
2844 1 1. matchAsciiKeyword : removed call to com/fasterxml/aalto/in/ReaderScanner::reportTreeUnexpChar → NO_COVERAGE
                reportTreeUnexpChar(c, " (expected '"+keyw.charAt(i)+"' for "+keyw+" keyword)");
2845
            }
2846
        }
2847
    }
2848
2849
    /**
2850
     *<p>
2851
     * Note: consequtive white space is only considered indentation,
2852
     * if the following token seems like a tag (start/end). This so
2853
     * that if a CDATA section follows, it can be coalesced in
2854
     * coalescing mode. Although we could check if coalescing mode is
2855
     * enabled, this should seldom have significant effect either way,
2856
     * so it removes one possible source of problems in coalescing mode.
2857
     *
2858
     * @return -1, if indentation was handled; offset in the output
2859
     *    buffer, if not
2860
     */
2861
    protected final int checkInTreeIndentation(char c)
2862
        throws XMLStreamException
2863
    {
2864 11 1. checkInTreeIndentation : negated conditional → SURVIVED
2. checkInTreeIndentation : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. checkInTreeIndentation : changed conditional boundary to IF_ICMPGE → SURVIVED
4. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → SURVIVED
5. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → SURVIVED
6. checkInTreeIndentation : changed conditional boundary to IF_ICMPLT → SURVIVED
7. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
11. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        if (c == '\r') {
2865
            // First a degenerate case, a lone \r:
2866 15 1. checkInTreeIndentation : changed conditional boundary → NO_COVERAGE
2. checkInTreeIndentation : negated conditional → NO_COVERAGE
3. checkInTreeIndentation : negated conditional → NO_COVERAGE
4. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
5. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
6. checkInTreeIndentation : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
7. checkInTreeIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
8. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. checkInTreeIndentation : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
11. checkInTreeIndentation : changed conditional boundary to IFEQ → NO_COVERAGE
12. checkInTreeIndentation : changed conditional boundary to IFGE → NO_COVERAGE
13. checkInTreeIndentation : changed conditional boundary to IFGT → NO_COVERAGE
14. checkInTreeIndentation : changed conditional boundary to IFLE → NO_COVERAGE
15. checkInTreeIndentation : changed conditional boundary to IFLT → NO_COVERAGE
            if (_inputPtr >= _inputEnd && !loadMore()) {
2867 12 1. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
8. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
9. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
10. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
11. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
12. checkInTreeIndentation : removed call to com/fasterxml/aalto/util/TextBuilder::resetWithIndentation → NO_COVERAGE
                _textBuilder.resetWithIndentation(0, CHAR_SPACE);
2868 6 1. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE
5. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. checkInTreeIndentation : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                return -1;
2869
            }
2870 13 1. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. checkInTreeIndentation : negated conditional → NO_COVERAGE
6. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. checkInTreeIndentation : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. checkInTreeIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. checkInTreeIndentation : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
            if (_inputBuffer[_inputPtr] == '\n') {
2871 8 1. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. checkInTreeIndentation : Replaced operate with second operand → NO_COVERAGE
6. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                ++_inputPtr;
2872
            }
2873
        }
2874 1 1. checkInTreeIndentation : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → KILLED
        markLF();
2875
        // Then need an indentation char (or start/end tag):
2876 9 1. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
3. checkInTreeIndentation : changed conditional boundary to IF_ICMPNE → SURVIVED
4. checkInTreeIndentation : changed conditional boundary → KILLED
5. checkInTreeIndentation : negated conditional → KILLED
6. checkInTreeIndentation : changed conditional boundary to IF_ICMPEQ → KILLED
7. checkInTreeIndentation : changed conditional boundary to IF_ICMPGE → KILLED
8. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → KILLED
9. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → KILLED
        if (_inputPtr >= _inputEnd) {
2877 1 1. checkInTreeIndentation : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → KILLED
            loadMoreGuaranteed();
2878
        }
2879 2 1. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
        c = _inputBuffer[_inputPtr];
2880 22 1. checkInTreeIndentation : changed conditional boundary to IF_ICMPLT → SURVIVED
2. checkInTreeIndentation : changed conditional boundary to IF_ICMPLT → SURVIVED
3. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
10. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
11. checkInTreeIndentation : negated conditional → KILLED
12. checkInTreeIndentation : negated conditional → KILLED
13. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. checkInTreeIndentation : changed conditional boundary to IF_ICMPGE → KILLED
16. checkInTreeIndentation : changed conditional boundary to IF_ICMPGE → KILLED
17. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → KILLED
18. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → KILLED
19. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → KILLED
20. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → KILLED
21. checkInTreeIndentation : changed conditional boundary to IF_ICMPNE → KILLED
22. checkInTreeIndentation : changed conditional boundary to IF_ICMPNE → KILLED
        if (c != ' ' && c != '\t') {
2881
            // May still be indentation, if it's lt + non-exclamation mark
2882 11 1. checkInTreeIndentation : negated conditional → SURVIVED
2. checkInTreeIndentation : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. checkInTreeIndentation : changed conditional boundary to IF_ICMPGE → SURVIVED
4. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → SURVIVED
5. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → SURVIVED
6. checkInTreeIndentation : changed conditional boundary to IF_ICMPLT → SURVIVED
7. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED
11. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            if (c == '<') {
2883 34 1. checkInTreeIndentation : negated conditional → SURVIVED
2. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
5. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
6. checkInTreeIndentation : changed conditional boundary to IF_ICMPEQ → SURVIVED
7. checkInTreeIndentation : changed conditional boundary to IF_ICMPGE → SURVIVED
8. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → SURVIVED
9. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → SURVIVED
10. checkInTreeIndentation : changed conditional boundary to IF_ICMPLT → SURVIVED
11. checkInTreeIndentation : changed conditional boundary to IF_ICMPNE → SURVIVED
12. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
13. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
14. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
15. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
16. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
17. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
18. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
19. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
20. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
21. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
22. checkInTreeIndentation : Replaced operate with second operand → KILLED
23. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
24. checkInTreeIndentation : Replaced operate with second operand → KILLED
25. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 33 with 1 → KILLED
26. checkInTreeIndentation : changed conditional boundary → KILLED
27. checkInTreeIndentation : negated conditional → KILLED
28. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
29. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
30. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
31. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → KILLED
32. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → KILLED
33. checkInTreeIndentation : changed conditional boundary to IF_ICMPLT → KILLED
34. checkInTreeIndentation : changed conditional boundary to IF_ICMPNE → KILLED
                if ((_inputPtr+1) < _inputEnd && _inputBuffer[_inputPtr+1] != '!') {
2884 12 1. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED
2. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
9. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
10. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. checkInTreeIndentation : removed call to com/fasterxml/aalto/util/TextBuilder::resetWithIndentation → KILLED
                    _textBuilder.resetWithIndentation(0, ' ');
2885 6 1. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
5. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. checkInTreeIndentation : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
                    return -1;
2886
                }
2887
            }
2888 1 1. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED
            char[] outputBuffer = _textBuilder.resetWithEmpty();
2889 10 1. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
8. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
9. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            outputBuffer[0] = '\n';
2890 7 1. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED
2. checkInTreeIndentation : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → SURVIVED
3. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            _textBuilder.setCurrentLength(1);
2891 6 1. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. checkInTreeIndentation : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
            return 1;
2892
        }
2893
        // So how many do we get?
2894 8 1. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. checkInTreeIndentation : Replaced operate with second operand → NO_COVERAGE
6. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
        ++_inputPtr;
2895 5 1. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
        int count = 1;
2896 21 1. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
8. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
9. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
11. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
12. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
13. checkInTreeIndentation : negated conditional → NO_COVERAGE
14. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
15. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
16. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
17. checkInTreeIndentation : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
18. checkInTreeIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
19. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
20. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
21. checkInTreeIndentation : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
        int max = (c == ' ') ? TextBuilder.MAX_INDENT_SPACES : TextBuilder.MAX_INDENT_TABS;
2897 6 1. checkInTreeIndentation : changed conditional boundary → NO_COVERAGE
2. checkInTreeIndentation : negated conditional → NO_COVERAGE
3. checkInTreeIndentation : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. checkInTreeIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. checkInTreeIndentation : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
6. checkInTreeIndentation : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
        while (count <= max) {
2898 9 1. checkInTreeIndentation : changed conditional boundary → NO_COVERAGE
2. checkInTreeIndentation : negated conditional → NO_COVERAGE
3. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. checkInTreeIndentation : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. checkInTreeIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. checkInTreeIndentation : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (_inputPtr >= _inputEnd) {
2899 1 1. checkInTreeIndentation : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                loadMoreGuaranteed();
2900
            }
2901 2 1. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
2. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
            char c2 = _inputBuffer[_inputPtr];
2902 6 1. checkInTreeIndentation : negated conditional → NO_COVERAGE
2. checkInTreeIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
3. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
4. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
5. checkInTreeIndentation : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
6. checkInTreeIndentation : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (c2 != c) {
2903
                // Has to be followed by a start/end tag...
2904 45 1. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
5. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
8. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
9. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
11. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
12. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
13. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 60 with 1 → NO_COVERAGE
14. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
15. checkInTreeIndentation : Replaced operate with second operand → NO_COVERAGE
16. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
17. checkInTreeIndentation : Replaced operate with second operand → NO_COVERAGE
18. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 33 with 1 → NO_COVERAGE
19. checkInTreeIndentation : changed conditional boundary → NO_COVERAGE
20. checkInTreeIndentation : negated conditional → NO_COVERAGE
21. checkInTreeIndentation : negated conditional → NO_COVERAGE
22. checkInTreeIndentation : negated conditional → NO_COVERAGE
23. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
24. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
25. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
26. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
27. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
28. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
29. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
30. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
31. checkInTreeIndentation : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
32. checkInTreeIndentation : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
33. checkInTreeIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
34. checkInTreeIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
35. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
36. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
37. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
38. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
39. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
40. checkInTreeIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
41. checkInTreeIndentation : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
42. checkInTreeIndentation : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
43. checkInTreeIndentation : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
44. checkInTreeIndentation : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
45. checkInTreeIndentation : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (c2 == '<' && (_inputPtr+1) < _inputEnd
2905
                    && _inputBuffer[_inputPtr+1] != '!') {
2906 2 1. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
2. checkInTreeIndentation : removed call to com/fasterxml/aalto/util/TextBuilder::resetWithIndentation → NO_COVERAGE
                    _textBuilder.resetWithIndentation(count, c);
2907 6 1. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE
5. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. checkInTreeIndentation : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                    return -1;
2908
                }
2909
                break;
2910
            }
2911 8 1. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. checkInTreeIndentation : Replaced operate with second operand → NO_COVERAGE
6. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
            ++_inputPtr;
2912 5 1. checkInTreeIndentation : Changed increment from 1 to -1 → NO_COVERAGE
2. checkInTreeIndentation : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. checkInTreeIndentation : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. checkInTreeIndentation : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. checkInTreeIndentation : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
            ++count;
2913
        }
2914
        // Nope, hit something else, or too long: need to just copy the stuff
2915
        // we know buffer has enough room either way
2916 1 1. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
        char[] outputBuffer = _textBuilder.resetWithEmpty();
2917 10 1. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
8. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
9. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
10. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
        outputBuffer[0] = '\n';
2918 16 1. checkInTreeIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkInTreeIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkInTreeIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkInTreeIndentation : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. checkInTreeIndentation : changed conditional boundary → NO_COVERAGE
6. checkInTreeIndentation : Changed increment from 1 to -1 → NO_COVERAGE
7. checkInTreeIndentation : negated conditional → NO_COVERAGE
8. checkInTreeIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. checkInTreeIndentation : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. checkInTreeIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. checkInTreeIndentation : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
12. checkInTreeIndentation : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
13. checkInTreeIndentation : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
14. checkInTreeIndentation : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
15. checkInTreeIndentation : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
16. checkInTreeIndentation : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
        for (int i = 1; i <= count; ++i) {
2919
            outputBuffer[i] = c;
2920
        }
2921 5 1. checkInTreeIndentation : Changed increment from 1 to -1 → NO_COVERAGE
2. checkInTreeIndentation : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. checkInTreeIndentation : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. checkInTreeIndentation : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. checkInTreeIndentation : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
        count += 1; // to account for leading lf
2922 2 1. checkInTreeIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
2. checkInTreeIndentation : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → NO_COVERAGE
        _textBuilder.setCurrentLength(count);
2923 1 1. checkInTreeIndentation : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
        return count;
2924
    }
2925
2926
    /**
2927
     * @return -1, if indentation was handled; offset in the output
2928
     *    buffer, if not
2929
     */
2930
    protected final int checkPrologIndentation(char c)
2931
        throws XMLStreamException
2932
    {
2933 11 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE
5. checkPrologIndentation : negated conditional → NO_COVERAGE
6. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. checkPrologIndentation : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. checkPrologIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. checkPrologIndentation : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
        if (c == '\r') {
2934
            // First a degenerate case, a lone \r:
2935 15 1. checkPrologIndentation : changed conditional boundary → NO_COVERAGE
2. checkPrologIndentation : negated conditional → NO_COVERAGE
3. checkPrologIndentation : negated conditional → NO_COVERAGE
4. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
5. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
6. checkPrologIndentation : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
7. checkPrologIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
8. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. checkPrologIndentation : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
11. checkPrologIndentation : changed conditional boundary to IFEQ → NO_COVERAGE
12. checkPrologIndentation : changed conditional boundary to IFGE → NO_COVERAGE
13. checkPrologIndentation : changed conditional boundary to IFGT → NO_COVERAGE
14. checkPrologIndentation : changed conditional boundary to IFLE → NO_COVERAGE
15. checkPrologIndentation : changed conditional boundary to IFLT → NO_COVERAGE
            if (_inputPtr >= _inputEnd && !loadMore()) {
2936 12 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
8. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
9. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
10. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
11. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
12. checkPrologIndentation : removed call to com/fasterxml/aalto/util/TextBuilder::resetWithIndentation → NO_COVERAGE
                _textBuilder.resetWithIndentation(0, CHAR_SPACE);
2937 6 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE
5. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. checkPrologIndentation : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                return -1;
2938
            }
2939 13 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. checkPrologIndentation : negated conditional → NO_COVERAGE
6. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. checkPrologIndentation : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. checkPrologIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. checkPrologIndentation : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
            if (_inputBuffer[_inputPtr] == '\n') {
2940 8 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. checkPrologIndentation : Replaced operate with second operand → NO_COVERAGE
6. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                ++_inputPtr;
2941
            }
2942
        }
2943 1 1. checkPrologIndentation : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
        markLF();
2944
        // Ok, indentation char?
2945 15 1. checkPrologIndentation : changed conditional boundary → NO_COVERAGE
2. checkPrologIndentation : negated conditional → NO_COVERAGE
3. checkPrologIndentation : negated conditional → NO_COVERAGE
4. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
5. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
6. checkPrologIndentation : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
7. checkPrologIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
8. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. checkPrologIndentation : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
11. checkPrologIndentation : changed conditional boundary to IFEQ → NO_COVERAGE
12. checkPrologIndentation : changed conditional boundary to IFGE → NO_COVERAGE
13. checkPrologIndentation : changed conditional boundary to IFGT → NO_COVERAGE
14. checkPrologIndentation : changed conditional boundary to IFLE → NO_COVERAGE
15. checkPrologIndentation : changed conditional boundary to IFLT → NO_COVERAGE
        if (_inputPtr >= _inputEnd && !loadMore()) {
2946 12 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
8. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
9. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
10. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
11. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
12. checkPrologIndentation : removed call to com/fasterxml/aalto/util/TextBuilder::resetWithIndentation → NO_COVERAGE
            _textBuilder.resetWithIndentation(0, CHAR_SPACE);
2947 6 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE
5. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. checkPrologIndentation : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
            return -1;
2948
        }
2949 2 1. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
2. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
        c = _inputBuffer[_inputPtr]; // won't advance past the char yet
2950 22 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
8. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE
9. checkPrologIndentation : negated conditional → NO_COVERAGE
10. checkPrologIndentation : negated conditional → NO_COVERAGE
11. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. checkPrologIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
14. checkPrologIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
15. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
16. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
19. checkPrologIndentation : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
20. checkPrologIndentation : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
21. checkPrologIndentation : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
22. checkPrologIndentation : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
        if (c != ' ' && c != '\t') {
2951
            // If lt, it's still indentation ok:
2952 11 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 60 with 1 → NO_COVERAGE
5. checkPrologIndentation : negated conditional → NO_COVERAGE
6. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. checkPrologIndentation : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. checkPrologIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. checkPrologIndentation : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
            if (c == '<') { // need
2953 12 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
8. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
9. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
10. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
11. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
12. checkPrologIndentation : removed call to com/fasterxml/aalto/util/TextBuilder::resetWithIndentation → NO_COVERAGE
                _textBuilder.resetWithIndentation(0, CHAR_SPACE);
2954 6 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE
5. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. checkPrologIndentation : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                return -1;
2955
            }
2956
            // Nope... something else
2957 1 1. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
            char[] outputBuffer = _textBuilder.resetWithEmpty();
2958 10 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
8. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
9. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
10. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
            outputBuffer[0] = '\n';
2959 7 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
7. checkPrologIndentation : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → NO_COVERAGE
            _textBuilder.setCurrentLength(1);
2960 6 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. checkPrologIndentation : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
            return 1;
2961
        }
2962
        // So how many do we get?
2963 8 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. checkPrologIndentation : Replaced operate with second operand → NO_COVERAGE
6. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
        ++_inputPtr;
2964 5 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
        int count = 1;
2965 21 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
8. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
9. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
11. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
12. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
13. checkPrologIndentation : negated conditional → NO_COVERAGE
14. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
15. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
16. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
17. checkPrologIndentation : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
18. checkPrologIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
19. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
20. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
21. checkPrologIndentation : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
        int max = (c == ' ') ? TextBuilder.MAX_INDENT_SPACES : TextBuilder.MAX_INDENT_TABS;
2966
        while (true) {
2967 15 1. checkPrologIndentation : changed conditional boundary → NO_COVERAGE
2. checkPrologIndentation : negated conditional → NO_COVERAGE
3. checkPrologIndentation : negated conditional → NO_COVERAGE
4. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
5. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
6. checkPrologIndentation : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
7. checkPrologIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
8. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. checkPrologIndentation : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
11. checkPrologIndentation : changed conditional boundary to IFEQ → NO_COVERAGE
12. checkPrologIndentation : changed conditional boundary to IFGE → NO_COVERAGE
13. checkPrologIndentation : changed conditional boundary to IFGT → NO_COVERAGE
14. checkPrologIndentation : changed conditional boundary to IFLE → NO_COVERAGE
15. checkPrologIndentation : changed conditional boundary to IFLT → NO_COVERAGE
            if (_inputPtr >= _inputEnd && !loadMore()) {
2968
                break;
2969
            }
2970 8 1. checkPrologIndentation : negated conditional → NO_COVERAGE
2. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
3. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. checkPrologIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. checkPrologIndentation : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
8. checkPrologIndentation : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (_inputBuffer[_inputPtr] != c) {
2971
                break;
2972
            }
2973 8 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. checkPrologIndentation : Replaced operate with second operand → NO_COVERAGE
6. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
            ++_inputPtr;
2974 5 1. checkPrologIndentation : Changed increment from 1 to -1 → NO_COVERAGE
2. checkPrologIndentation : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. checkPrologIndentation : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. checkPrologIndentation : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. checkPrologIndentation : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
            ++count;
2975 7 1. checkPrologIndentation : changed conditional boundary → NO_COVERAGE
2. checkPrologIndentation : negated conditional → NO_COVERAGE
3. checkPrologIndentation : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. checkPrologIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. checkPrologIndentation : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. checkPrologIndentation : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            if (count >= max) { // ok, can't share... but can build it still
2976
                // we know buffer has enough room
2977 1 1. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                char[] outputBuffer = _textBuilder.resetWithEmpty();
2978 10 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
8. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
9. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
10. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                outputBuffer[0] = '\n';
2979 16 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. checkPrologIndentation : changed conditional boundary → NO_COVERAGE
6. checkPrologIndentation : Changed increment from 1 to -1 → NO_COVERAGE
7. checkPrologIndentation : negated conditional → NO_COVERAGE
8. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. checkPrologIndentation : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. checkPrologIndentation : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. checkPrologIndentation : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
12. checkPrologIndentation : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
13. checkPrologIndentation : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
14. checkPrologIndentation : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
15. checkPrologIndentation : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
16. checkPrologIndentation : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                for (int i = 1; i <= count; ++i) {
2980
                    outputBuffer[i] = c;
2981
                }
2982 5 1. checkPrologIndentation : Changed increment from 1 to -1 → NO_COVERAGE
2. checkPrologIndentation : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. checkPrologIndentation : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. checkPrologIndentation : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. checkPrologIndentation : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                count += 1; // to account for leading lf
2983 2 1. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
2. checkPrologIndentation : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → NO_COVERAGE
                _textBuilder.setCurrentLength(count);
2984 1 1. checkPrologIndentation : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                return count;
2985
            }
2986
        }
2987
        // Ok, gotcha?
2988 2 1. checkPrologIndentation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
2. checkPrologIndentation : removed call to com/fasterxml/aalto/util/TextBuilder::resetWithIndentation → NO_COVERAGE
        _textBuilder.resetWithIndentation(count, c);
2989 6 1. checkPrologIndentation : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkPrologIndentation : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkPrologIndentation : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkPrologIndentation : Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE
5. checkPrologIndentation : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. checkPrologIndentation : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
        return -1;
2990
    }
2991
2992
    protected PName parsePName(char c)
2993
        throws XMLStreamException
2994
    {
2995 1 1. parsePName : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → SURVIVED
        char[] nameBuffer = _nameBuffer;
2996
2997
        /* Let's do just quick sanity check first; a thorough check will be
2998
         * done later on if necessary, now we'll just do the very cheap
2999
         * check to catch extra spaces etc.
3000
         */
3001 12 1. parsePName : changed conditional boundary → SURVIVED
2. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parsePName : changed conditional boundary to IF_ICMPNE → SURVIVED
5. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. parsePName : Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED
9. parsePName : negated conditional → KILLED
10. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
12. parsePName : changed conditional boundary to IF_ICMPLT → KILLED
        if (c < INT_A) { // lowest acceptable start char, except for ':' that would be allowed in non-ns mode
3002 1 1. parsePName : removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE
            throwUnexpectedChar(c, "; expected a name start character");
3003
        }
3004 5 1. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parsePName : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        nameBuffer[0] = c;
3005
        int hash = (int) c;
3006 5 1. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parsePName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        int ptr = 1;
3007
3008
        while (true) {
3009 9 1. parsePName : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parsePName : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parsePName : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parsePName : changed conditional boundary → KILLED
5. parsePName : negated conditional → KILLED
6. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
7. parsePName : changed conditional boundary to IF_ICMPGE → KILLED
8. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
9. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
            if (_inputPtr >= _inputEnd) {
3010 1 1. parsePName : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → KILLED
                loadMoreGuaranteed();
3011
            }
3012 2 1. parsePName : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parsePName : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
            c = _inputBuffer[_inputPtr];
3013
            int d = (int) c;
3014 12 1. parsePName : changed conditional boundary → SURVIVED
2. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. parsePName : Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED
8. parsePName : negated conditional → KILLED
9. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
11. parsePName : changed conditional boundary to IF_ICMPLT → KILLED
12. parsePName : changed conditional boundary to IF_ICMPNE → KILLED
            if (d < 65) {
3015
                // Ok; "_" (45), "." (46) and "0"-"9"/":" (48 - 57/58) still name chars
3016 34 1. parsePName : changed conditional boundary → SURVIVED
2. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
12. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
13. parsePName : Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED
14. parsePName : Bug fixed: CRCR replace with One, Substituted 58 with 1 → KILLED
15. parsePName : Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED
16. parsePName : changed conditional boundary → KILLED
17. parsePName : negated conditional → KILLED
18. parsePName : negated conditional → KILLED
19. parsePName : negated conditional → KILLED
20. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
21. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
22. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
23. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
24. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
25. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
26. parsePName : changed conditional boundary to IF_ICMPGE → KILLED
27. parsePName : changed conditional boundary to IF_ICMPGE → KILLED
28. parsePName : changed conditional boundary to IF_ICMPGE → KILLED
29. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
30. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
31. parsePName : changed conditional boundary to IF_ICMPLT → KILLED
32. parsePName : changed conditional boundary to IF_ICMPLT → KILLED
33. parsePName : changed conditional boundary to IF_ICMPNE → KILLED
34. parsePName : changed conditional boundary to IF_ICMPNE → KILLED
                if (d < 45 || d > 58 || d == 47) {
3017
                    // End of name, a single ascii char?
3018 6 1. parsePName : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_symbols mutated with null check on object → SURVIVED
2. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parsePName : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                    PName n = _symbols.findSymbol(nameBuffer, 0, ptr, hash);
3019 1 1. parsePName : negated conditional → KILLED
                    if (n == null) {
3020
                        n = addPName(nameBuffer, ptr, hash);
3021
                    }
3022 1 1. parsePName : mutated return of Object value for com/fasterxml/aalto/in/ReaderScanner::parsePName to ( if (x != null) null else throw new RuntimeException ) → KILLED
                    return n;
3023
                }
3024
            }
3025 8 1. parsePName : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parsePName : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. parsePName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. parsePName : Replaced operate with second operand → KILLED
8. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            ++_inputPtr;
3026 7 1. parsePName : changed conditional boundary → SURVIVED
2. parsePName : negated conditional → SURVIVED
3. parsePName : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. parsePName : changed conditional boundary to IF_ICMPGE → SURVIVED
5. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
6. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
7. parsePName : changed conditional boundary to IF_ICMPNE → SURVIVED
            if (ptr >= nameBuffer.length) {
3027 1 1. parsePName : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
                _nameBuffer = nameBuffer = DataUtil.growArrayBy(nameBuffer, nameBuffer.length);
3028
            }
3029 5 1. parsePName : Changed increment from 1 to -1 → KILLED
2. parsePName : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. parsePName : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. parsePName : UOI Mutator: Removed unary increment of local variable → KILLED
5. parsePName : UOI Mutator: Reversed increment of local variable → KILLED
            nameBuffer[ptr++] = c;
3030 7 1. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parsePName : Bug fixed: CRCR replace with One, Substituted 31 with 1 → KILLED
5. parsePName : Replaced operate with second operand → KILLED
6. parsePName : Replaced operate with second operand → KILLED
7. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            hash = (hash * 31) + d;
3031
        }
3032
    }
3033
3034
    protected final PName addPName(char[] nameBuffer, int nameLen, int hash)
3035
        throws XMLStreamException
3036
    {
3037
        // Let's validate completely, now:
3038 5 1. addPName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. addPName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. addPName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. addPName : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. addPName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        char c = nameBuffer[0];
3039 5 1. addPName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. addPName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. addPName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. addPName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. addPName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        int namePtr = 1;
3040 5 1. addPName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR
2. addPName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. addPName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. addPName : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
5. addPName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        int last_colon = -1; // where the colon is
3041
3042 24 1. addPName : changed conditional boundary → SURVIVED
2. addPName : changed conditional boundary → SURVIVED
3. addPName : negated conditional → SURVIVED
4. addPName : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. addPName : changed conditional boundary to IF_ICMPGE → SURVIVED
6. addPName : changed conditional boundary to IF_ICMPGT → SURVIVED
7. addPName : changed conditional boundary to IF_ICMPGT → SURVIVED
8. addPName : changed conditional boundary to IF_ICMPNE → SURVIVED
9. addPName : changed conditional boundary to IF_ICMPNE → SURVIVED
10. addPName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
11. addPName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
12. addPName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
13. addPName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
14. addPName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
15. addPName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
16. addPName : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → KILLED
17. addPName : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → KILLED
18. addPName : negated conditional → KILLED
19. addPName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
20. addPName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
21. addPName : changed conditional boundary to IF_ICMPEQ → KILLED
22. addPName : changed conditional boundary to IF_ICMPGE → KILLED
23. addPName : changed conditional boundary to IF_ICMPGT → KILLED
24. addPName : changed conditional boundary to IF_ICMPGT → KILLED
        if (c < 0xD800 || c >= 0xE000) {
3043 6 1. addPName : changed conditional boundary to IFGE → SURVIVED
2. addPName : changed conditional boundary to IFGT → SURVIVED
3. addPName : negated conditional → KILLED
4. addPName : changed conditional boundary to IFEQ → KILLED
5. addPName : changed conditional boundary to IFLE → KILLED
6. addPName : changed conditional boundary to IFLT → KILLED
            if (!XmlChars.is10NameStartChar(c)) {
3044 6 1. addPName : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. addPName : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. addPName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. addPName : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. addPName : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. addPName : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidNameChar → NO_COVERAGE
                reportInvalidNameChar(c, 0);
3045
            }
3046
        } else {
3047 11 1. addPName : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. addPName : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. addPName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. addPName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. addPName : negated conditional → NO_COVERAGE
6. addPName : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. addPName : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. addPName : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. addPName : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. addPName : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. addPName : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
            if (nameLen == 1) {
3048 1 1. addPName : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidFirstSurrogate → NO_COVERAGE
                reportInvalidFirstSurrogate(c);
3049
            }
3050
            // Only returns if ok; throws exception otherwise
3051 10 1. addPName : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. addPName : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. addPName : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. addPName : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. addPName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. addPName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. addPName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. addPName : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
9. addPName : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
10. addPName : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
            checkSurrogateNameChar(c, nameBuffer[1], 0);
3052 5 1. addPName : Changed increment from 1 to -1 → NO_COVERAGE
2. addPName : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. addPName : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. addPName : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. addPName : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
            ++namePtr;
3053
        }
3054
3055 12 1. addPName : changed conditional boundary to IF_ICMPEQ → SURVIVED
2. addPName : UOI Mutator: Added unary increment 1 -> 2 to local variable → SURVIVED
3. addPName : UOI Mutator: Added unary decrement 1 -> 0 to local variable → TIMED_OUT
4. addPName : UOI Mutator: Removed unary increment of local variable → TIMED_OUT
5. addPName : changed conditional boundary → KILLED
6. addPName : Changed increment from 1 to -1 → KILLED
7. addPName : negated conditional → KILLED
8. addPName : changed conditional boundary to IF_ICMPGT → KILLED
9. addPName : changed conditional boundary to IF_ICMPGT → KILLED
10. addPName : changed conditional boundary to IF_ICMPLT → KILLED
11. addPName : changed conditional boundary to IF_ICMPNE → KILLED
12. addPName : UOI Mutator: Reversed increment of local variable → KILLED
        for (; namePtr < nameLen; ++namePtr) {
3056
            c = nameBuffer[namePtr];
3057
3058 24 1. addPName : changed conditional boundary → SURVIVED
2. addPName : changed conditional boundary → SURVIVED
3. addPName : negated conditional → SURVIVED
4. addPName : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. addPName : changed conditional boundary to IF_ICMPGE → SURVIVED
6. addPName : changed conditional boundary to IF_ICMPGT → SURVIVED
7. addPName : changed conditional boundary to IF_ICMPGT → SURVIVED
8. addPName : changed conditional boundary to IF_ICMPNE → SURVIVED
9. addPName : changed conditional boundary to IF_ICMPNE → SURVIVED
10. addPName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR
11. addPName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
12. addPName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
13. addPName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
14. addPName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
15. addPName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
16. addPName : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → KILLED
17. addPName : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → KILLED
18. addPName : negated conditional → KILLED
19. addPName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
20. addPName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
21. addPName : changed conditional boundary to IF_ICMPEQ → KILLED
22. addPName : changed conditional boundary to IF_ICMPGE → KILLED
23. addPName : changed conditional boundary to IF_ICMPGT → KILLED
24. addPName : changed conditional boundary to IF_ICMPGT → KILLED
            if (c < 0xD800 || c >= 0xE000) {
3059 11 1. addPName : changed conditional boundary to IF_ICMPGT → SURVIVED
2. addPName : changed conditional boundary to IF_ICMPGT → SURVIVED
3. addPName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. addPName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. addPName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. addPName : Bug fixed: CRCR replace with One, Substituted 58 with 1 → KILLED
7. addPName : negated conditional → KILLED
8. addPName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. addPName : changed conditional boundary to IF_ICMPEQ → KILLED
10. addPName : changed conditional boundary to IF_ICMPGE → KILLED
11. addPName : changed conditional boundary to IF_ICMPLT → KILLED
                if (c == ':') {
3060 7 1. addPName : changed conditional boundary → SURVIVED
2. addPName : changed conditional boundary to IFLE → SURVIVED
3. addPName : changed conditional boundary to IFNE → SURVIVED
4. addPName : negated conditional → KILLED
5. addPName : changed conditional boundary to IFEQ → KILLED
6. addPName : changed conditional boundary to IFGE → KILLED
7. addPName : changed conditional boundary to IFGT → KILLED
                    if (last_colon >= 0) {
3061 1 1. addPName : removed call to com/fasterxml/aalto/in/ReaderScanner::reportMultipleColonsInName → NO_COVERAGE
                        reportMultipleColonsInName();
3062
                    }
3063
                    last_colon = namePtr;
3064
                } else {
3065 6 1. addPName : changed conditional boundary to IFGE → SURVIVED
2. addPName : changed conditional boundary to IFGT → SURVIVED
3. addPName : negated conditional → KILLED
4. addPName : changed conditional boundary to IFEQ → KILLED
5. addPName : changed conditional boundary to IFLE → KILLED
6. addPName : changed conditional boundary to IFLT → KILLED
                    if (!XmlChars.is10NameChar(c)) {
3066 1 1. addPName : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidNameChar → NO_COVERAGE
                        reportInvalidNameChar(c, namePtr);
3067
                    }
3068
                }
3069
            } else {
3070 13 1. addPName : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. addPName : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. addPName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. addPName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. addPName : Replaced operate with second operand → NO_COVERAGE
6. addPName : changed conditional boundary → NO_COVERAGE
7. addPName : negated conditional → NO_COVERAGE
8. addPName : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. addPName : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. addPName : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. addPName : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. addPName : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. addPName : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if ((namePtr+1) >= nameLen) { // unpaired surrogate
3071 1 1. addPName : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidFirstSurrogate → NO_COVERAGE
                    reportInvalidFirstSurrogate(c);
3072
                }
3073 6 1. addPName : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. addPName : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. addPName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. addPName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. addPName : Replaced operate with second operand → NO_COVERAGE
6. addPName : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                checkSurrogateNameChar(c, nameBuffer[namePtr+1], namePtr);
3074
            }
3075
        }
3076 7 1. addPName : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_symbols mutated with null check on object → SURVIVED
2. addPName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. addPName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. addPName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. addPName : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. addPName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. addPName : mutated return of Object value for com/fasterxml/aalto/in/ReaderScanner::addPName to ( if (x != null) null else throw new RuntimeException ) → KILLED
        return _symbols.addSymbol(nameBuffer, 0, nameLen, hash);
3077
    }
3078
3079
    protected String parsePublicId(char quoteChar)
3080
        throws XMLStreamException
3081
    {
3082 1 1. parsePublicId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → SURVIVED
        char[] outputBuffer = _nameBuffer;
3083 5 1. parsePublicId : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parsePublicId : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parsePublicId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parsePublicId : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. parsePublicId : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        int outPtr = 0;
3084
        final int[] TYPES = XmlCharTypes.PUBID_CHARS;
3085 5 1. parsePublicId : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parsePublicId : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parsePublicId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parsePublicId : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. parsePublicId : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        boolean addSpace = false;
3086
3087
        main_loop:
3088
        while (true) {
3089 9 1. parsePublicId : changed conditional boundary → SURVIVED
2. parsePublicId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parsePublicId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. parsePublicId : changed conditional boundary to IF_ICMPNE → SURVIVED
5. parsePublicId : negated conditional → KILLED
6. parsePublicId : changed conditional boundary to IF_ICMPEQ → KILLED
7. parsePublicId : changed conditional boundary to IF_ICMPGE → KILLED
8. parsePublicId : changed conditional boundary to IF_ICMPGT → KILLED
9. parsePublicId : changed conditional boundary to IF_ICMPGT → KILLED
            if (_inputPtr >= _inputEnd) {
3090 1 1. parsePublicId : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                loadMoreGuaranteed();
3091
            }
3092
            // Easier to check without char type table, first:
3093 9 1. parsePublicId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parsePublicId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parsePublicId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. parsePublicId : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parsePublicId : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. parsePublicId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. parsePublicId : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. parsePublicId : Replaced operate with second operand → KILLED
9. parsePublicId : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            char c = _inputBuffer[_inputPtr++];
3094 6 1. parsePublicId : changed conditional boundary to IF_ICMPGT → SURVIVED
2. parsePublicId : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parsePublicId : negated conditional → KILLED
4. parsePublicId : changed conditional boundary to IF_ICMPEQ → KILLED
5. parsePublicId : changed conditional boundary to IF_ICMPGE → KILLED
6. parsePublicId : changed conditional boundary to IF_ICMPLT → KILLED
            if (c == quoteChar) {
3095
                break main_loop;
3096
            }
3097 22 1. parsePublicId : changed conditional boundary → SURVIVED
2. parsePublicId : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. parsePublicId : changed conditional boundary to IF_ICMPGE → SURVIVED
4. parsePublicId : changed conditional boundary to IF_ICMPGE → SURVIVED
5. parsePublicId : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parsePublicId : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. parsePublicId : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. parsePublicId : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. parsePublicId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. parsePublicId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. parsePublicId : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
12. parsePublicId : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
13. parsePublicId : negated conditional → KILLED
14. parsePublicId : negated conditional → KILLED
15. parsePublicId : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
16. parsePublicId : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. parsePublicId : changed conditional boundary to IF_ICMPGT → KILLED
18. parsePublicId : changed conditional boundary to IF_ICMPGT → KILLED
19. parsePublicId : changed conditional boundary to IF_ICMPLT → KILLED
20. parsePublicId : changed conditional boundary to IF_ICMPLT → KILLED
21. parsePublicId : changed conditional boundary to IF_ICMPNE → KILLED
22. parsePublicId : changed conditional boundary to IF_ICMPNE → KILLED
            if ((c > 0xFF) || TYPES[c] != XmlCharTypes.PUBID_OK) {
3098 1 1. parsePublicId : removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE
                throwUnexpectedChar(c, " in public identifier");
3099
            }
3100
3101
            // White space? Needs to be coalecsed
3102 11 1. parsePublicId : changed conditional boundary → SURVIVED
2. parsePublicId : negated conditional → SURVIVED
3. parsePublicId : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. parsePublicId : changed conditional boundary to IF_ICMPGE → SURVIVED
5. parsePublicId : changed conditional boundary to IF_ICMPLT → SURVIVED
6. parsePublicId : changed conditional boundary to IF_ICMPNE → SURVIVED
7. parsePublicId : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. parsePublicId : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. parsePublicId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. parsePublicId : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
11. parsePublicId : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            if (c <= INT_SPACE) {
3103 5 1. parsePublicId : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parsePublicId : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parsePublicId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parsePublicId : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. parsePublicId : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                addSpace = true;
3104
                continue;
3105
            }
3106 6 1. parsePublicId : negated conditional → SURVIVED
2. parsePublicId : changed conditional boundary to IFGE → SURVIVED
3. parsePublicId : changed conditional boundary to IFGT → SURVIVED
4. parsePublicId : changed conditional boundary to IFLE → SURVIVED
5. parsePublicId : changed conditional boundary to IFLT → SURVIVED
6. parsePublicId : changed conditional boundary to IFNE → SURVIVED
            if (addSpace) {
3107 7 1. parsePublicId : changed conditional boundary → NO_COVERAGE
2. parsePublicId : negated conditional → NO_COVERAGE
3. parsePublicId : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. parsePublicId : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. parsePublicId : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. parsePublicId : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. parsePublicId : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (outPtr >= outputBuffer.length) {
3108 1 1. parsePublicId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
                    outputBuffer = _textBuilder.finishCurrentSegment();
3109 5 1. parsePublicId : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parsePublicId : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parsePublicId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parsePublicId : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. parsePublicId : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    outPtr = 0;
3110
                }
3111 10 1. parsePublicId : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parsePublicId : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parsePublicId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parsePublicId : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
5. parsePublicId : Changed increment from 1 to -1 → NO_COVERAGE
6. parsePublicId : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. parsePublicId : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
8. parsePublicId : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
9. parsePublicId : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
10. parsePublicId : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
                outputBuffer[outPtr++] = ' ';
3112 5 1. parsePublicId : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parsePublicId : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parsePublicId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parsePublicId : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. parsePublicId : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                addSpace = false;
3113
            }
3114 7 1. parsePublicId : changed conditional boundary → SURVIVED
2. parsePublicId : negated conditional → SURVIVED
3. parsePublicId : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. parsePublicId : changed conditional boundary to IF_ICMPGE → SURVIVED
5. parsePublicId : changed conditional boundary to IF_ICMPGT → SURVIVED
6. parsePublicId : changed conditional boundary to IF_ICMPGT → SURVIVED
7. parsePublicId : changed conditional boundary to IF_ICMPNE → SURVIVED
            if (outPtr >= outputBuffer.length) {
3115 1 1. parsePublicId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
                _nameBuffer = outputBuffer = DataUtil.growArrayBy(outputBuffer, outputBuffer.length);
3116 5 1. parsePublicId : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parsePublicId : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parsePublicId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parsePublicId : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. parsePublicId : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                outPtr = 0;
3117
            }
3118 5 1. parsePublicId : UOI Mutator: Added unary decrement 1 -> 0 to local variable → SURVIVED
2. parsePublicId : UOI Mutator: Added unary increment 1 -> 2 to local variable → SURVIVED
3. parsePublicId : UOI Mutator: Removed unary increment of local variable → SURVIVED
4. parsePublicId : Changed increment from 1 to -1 → KILLED
5. parsePublicId : UOI Mutator: Reversed increment of local variable → KILLED
            outputBuffer[outPtr++] = c;
3119
        }
3120 6 1. parsePublicId : mutated return of Object value for com/fasterxml/aalto/in/ReaderScanner::parsePublicId to ( if (x != null) null else throw new RuntimeException ) → SURVIVED
2. parsePublicId : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parsePublicId : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parsePublicId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parsePublicId : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. parsePublicId : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        return new String(outputBuffer, 0, outPtr);
3121
    }
3122
3123
    protected String parseSystemId(char quoteChar)
3124
        throws XMLStreamException
3125
    {
3126 1 1. parseSystemId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → SURVIVED
        char[] outputBuffer = _nameBuffer;
3127 5 1. parseSystemId : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseSystemId : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseSystemId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseSystemId : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. parseSystemId : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        int outPtr = 0;
3128
        // attribute types are closest matches, so let's use them
3129 1 1. parseSystemId : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldATTR_CHARS mutated with null check on object → SURVIVED
        final int[] TYPES = sCharTypes.ATTR_CHARS;
3130
        //boolean spaceToAdd = false;
3131
3132
        main_loop:
3133
        while (true) {
3134 9 1. parseSystemId : changed conditional boundary → SURVIVED
2. parseSystemId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseSystemId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. parseSystemId : changed conditional boundary to IF_ICMPNE → SURVIVED
5. parseSystemId : negated conditional → KILLED
6. parseSystemId : changed conditional boundary to IF_ICMPEQ → KILLED
7. parseSystemId : changed conditional boundary to IF_ICMPGE → KILLED
8. parseSystemId : changed conditional boundary to IF_ICMPGT → KILLED
9. parseSystemId : changed conditional boundary to IF_ICMPGT → KILLED
            if (_inputPtr >= _inputEnd) {
3135 1 1. parseSystemId : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                loadMoreGuaranteed();
3136
            }
3137 9 1. parseSystemId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parseSystemId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseSystemId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. parseSystemId : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parseSystemId : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. parseSystemId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. parseSystemId : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. parseSystemId : Replaced operate with second operand → KILLED
9. parseSystemId : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            char c = _inputBuffer[_inputPtr++];
3138 6 1. parseSystemId : changed conditional boundary to IFLE → SURVIVED
2. parseSystemId : changed conditional boundary to IFLT → SURVIVED
3. parseSystemId : negated conditional → KILLED
4. parseSystemId : changed conditional boundary to IFGE → KILLED
5. parseSystemId : changed conditional boundary to IFGT → KILLED
6. parseSystemId : changed conditional boundary to IFNE → KILLED
            if (TYPES[c] != 0) {
3139
                switch (TYPES[c]) {
3140
                case XmlCharTypes.CT_INVALID:
3141
                    c = handleInvalidXmlChar(c);
3142
                case XmlCharTypes.CT_WS_CR:
3143
                    {
3144 9 1. parseSystemId : changed conditional boundary → NO_COVERAGE
2. parseSystemId : negated conditional → NO_COVERAGE
3. parseSystemId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. parseSystemId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. parseSystemId : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. parseSystemId : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. parseSystemId : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. parseSystemId : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. parseSystemId : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                        if (_inputPtr >= _inputEnd) {
3145 1 1. parseSystemId : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
                            loadMoreGuaranteed();
3146
                        }
3147 13 1. parseSystemId : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseSystemId : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseSystemId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseSystemId : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. parseSystemId : negated conditional → NO_COVERAGE
6. parseSystemId : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. parseSystemId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. parseSystemId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. parseSystemId : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. parseSystemId : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. parseSystemId : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. parseSystemId : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. parseSystemId : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
                        if (_inputBuffer[_inputPtr] == '\n') {
3148 8 1. parseSystemId : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseSystemId : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseSystemId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseSystemId : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. parseSystemId : Replaced operate with second operand → NO_COVERAGE
6. parseSystemId : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. parseSystemId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. parseSystemId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
                            ++_inputPtr;
3149
                        }
3150 1 1. parseSystemId : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                        markLF();
3151
                    }
3152 5 1. parseSystemId : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseSystemId : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseSystemId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseSystemId : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. parseSystemId : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                    c = '\n';
3153
                    break;
3154
                case XmlCharTypes.CT_WS_LF:
3155 1 1. parseSystemId : removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE
                    markLF();
3156
                    break;
3157
3158
                case XmlCharTypes.CT_ATTR_QUOTE:
3159 6 1. parseSystemId : changed conditional boundary to IF_ICMPGT → SURVIVED
2. parseSystemId : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parseSystemId : changed conditional boundary to IF_ICMPLT → SURVIVED
4. parseSystemId : negated conditional → KILLED
5. parseSystemId : changed conditional boundary to IF_ICMPEQ → KILLED
6. parseSystemId : changed conditional boundary to IF_ICMPGE → KILLED
                    if (c == quoteChar) {
3160
                        break main_loop;
3161
                    }
3162
                }
3163
            }
3164 7 1. parseSystemId : changed conditional boundary → SURVIVED
2. parseSystemId : negated conditional → SURVIVED
3. parseSystemId : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. parseSystemId : changed conditional boundary to IF_ICMPGE → SURVIVED
5. parseSystemId : changed conditional boundary to IF_ICMPGT → SURVIVED
6. parseSystemId : changed conditional boundary to IF_ICMPGT → SURVIVED
7. parseSystemId : changed conditional boundary to IF_ICMPNE → SURVIVED
            if (outPtr >= outputBuffer.length) {
3165 1 1. parseSystemId : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
                _nameBuffer = outputBuffer = DataUtil.growArrayBy(outputBuffer, outputBuffer.length);
3166 5 1. parseSystemId : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseSystemId : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseSystemId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseSystemId : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. parseSystemId : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
                outPtr = 0;
3167
            }
3168 5 1. parseSystemId : UOI Mutator: Added unary decrement 1 -> 0 to local variable → SURVIVED
2. parseSystemId : UOI Mutator: Added unary increment 1 -> 2 to local variable → SURVIVED
3. parseSystemId : UOI Mutator: Removed unary increment of local variable → SURVIVED
4. parseSystemId : Changed increment from 1 to -1 → KILLED
5. parseSystemId : UOI Mutator: Reversed increment of local variable → KILLED
            outputBuffer[outPtr++] = c;
3169
        }
3170 6 1. parseSystemId : mutated return of Object value for com/fasterxml/aalto/in/ReaderScanner::parseSystemId to ( if (x != null) null else throw new RuntimeException ) → SURVIVED
2. parseSystemId : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseSystemId : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseSystemId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseSystemId : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. parseSystemId : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        return new String(outputBuffer, 0, outPtr);
3171
    }
3172
3173
    /*
3174
    /**********************************************************************
3175
    /* Other parsing helper methods
3176
    /**********************************************************************
3177
     */
3178
3179
    /**
3180
     * This method is called to verify that a surrogate
3181
     * pair found describes a legal surrogate pair (ie. expands
3182
     * to a legal XML char)
3183
     */
3184
    private char checkSurrogate(char firstChar)
3185
        throws XMLStreamException
3186
    {
3187 12 1. checkSurrogate : changed conditional boundary → SURVIVED
2. checkSurrogate : changed conditional boundary to IF_ICMPNE → SURVIVED
3. checkSurrogate : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. checkSurrogate : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. checkSurrogate : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. checkSurrogate : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → KILLED
7. checkSurrogate : negated conditional → KILLED
8. checkSurrogate : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. checkSurrogate : changed conditional boundary to IF_ICMPEQ → KILLED
10. checkSurrogate : changed conditional boundary to IF_ICMPGE → KILLED
11. checkSurrogate : changed conditional boundary to IF_ICMPGT → KILLED
12. checkSurrogate : changed conditional boundary to IF_ICMPGT → KILLED
        if (firstChar >= 0xDC00) {
3188 1 1. checkSurrogate : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidFirstSurrogate → NO_COVERAGE
            reportInvalidFirstSurrogate(firstChar);
3189
        }
3190 9 1. checkSurrogate : changed conditional boundary → SURVIVED
2. checkSurrogate : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. checkSurrogate : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
4. checkSurrogate : changed conditional boundary to IF_ICMPNE → SURVIVED
5. checkSurrogate : negated conditional → KILLED
6. checkSurrogate : changed conditional boundary to IF_ICMPEQ → KILLED
7. checkSurrogate : changed conditional boundary to IF_ICMPGE → KILLED
8. checkSurrogate : changed conditional boundary to IF_ICMPGT → KILLED
9. checkSurrogate : changed conditional boundary to IF_ICMPGT → KILLED
        if (_inputPtr >= _inputEnd) {
3191 1 1. checkSurrogate : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
            loadMoreGuaranteed();
3192
        }
3193 9 1. checkSurrogate : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. checkSurrogate : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. checkSurrogate : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. checkSurrogate : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. checkSurrogate : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. checkSurrogate : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. checkSurrogate : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. checkSurrogate : Replaced operate with second operand → KILLED
9. checkSurrogate : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        char sec = _inputBuffer[_inputPtr++];
3194 24 1. checkSurrogate : changed conditional boundary → SURVIVED
2. checkSurrogate : changed conditional boundary → SURVIVED
3. checkSurrogate : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. checkSurrogate : changed conditional boundary to IF_ICMPNE → SURVIVED
5. checkSurrogate : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. checkSurrogate : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. checkSurrogate : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. checkSurrogate : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. checkSurrogate : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. checkSurrogate : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. checkSurrogate : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → KILLED
12. checkSurrogate : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → KILLED
13. checkSurrogate : negated conditional → KILLED
14. checkSurrogate : negated conditional → KILLED
15. checkSurrogate : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
16. checkSurrogate : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. checkSurrogate : changed conditional boundary to IF_ICMPEQ → KILLED
18. checkSurrogate : changed conditional boundary to IF_ICMPGE → KILLED
19. checkSurrogate : changed conditional boundary to IF_ICMPGE → KILLED
20. checkSurrogate : changed conditional boundary to IF_ICMPGT → KILLED
21. checkSurrogate : changed conditional boundary to IF_ICMPGT → KILLED
22. checkSurrogate : changed conditional boundary to IF_ICMPGT → KILLED
23. checkSurrogate : changed conditional boundary to IF_ICMPGT → KILLED
24. checkSurrogate : changed conditional boundary to IF_ICMPNE → KILLED
        if (sec < 0xDC00 || sec >= 0xE000) {
3195 1 1. checkSurrogate : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidSecondSurrogate → NO_COVERAGE
            reportInvalidSecondSurrogate(sec);
3196
        }
3197
        // And the composite, is it ok?
3198 18 1. checkSurrogate : Replaced Shift Left with Shift Right → SURVIVED
2. checkSurrogate : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR
3. checkSurrogate : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. checkSurrogate : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. checkSurrogate : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. checkSurrogate : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. checkSurrogate : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. checkSurrogate : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. checkSurrogate : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. checkSurrogate : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. checkSurrogate : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → KILLED
12. checkSurrogate : Replaced operate with second operand → KILLED
13. checkSurrogate : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
14. checkSurrogate : Bug fixed: CRCR replace with One, Substituted 65536 with 1 → KILLED
15. checkSurrogate : Replaced operate with second operand → KILLED
16. checkSurrogate : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. checkSurrogate : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. checkSurrogate : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        int val = ((firstChar - 0xD800) << 10) + 0x10000;
3199 13 1. checkSurrogate : changed conditional boundary → SURVIVED
2. checkSurrogate : changed conditional boundary to IF_ICMPLT → SURVIVED
3. checkSurrogate : changed conditional boundary to IF_ICMPNE → SURVIVED
4. checkSurrogate : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. checkSurrogate : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. checkSurrogate : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. checkSurrogate : Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → KILLED
8. checkSurrogate : negated conditional → KILLED
9. checkSurrogate : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. checkSurrogate : changed conditional boundary to IF_ICMPEQ → KILLED
11. checkSurrogate : changed conditional boundary to IF_ICMPGE → KILLED
12. checkSurrogate : changed conditional boundary to IF_ICMPGT → KILLED
13. checkSurrogate : changed conditional boundary to IF_ICMPGT → KILLED
        if (val > XmlConsts.MAX_UNICODE_CHAR) {
3200 1 1. checkSurrogate : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidXmlChar → NO_COVERAGE
            reportInvalidXmlChar(val);
3201
        }
3202 1 1. checkSurrogate : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
        return sec;
3203
    }
3204
3205
    private int checkSurrogateNameChar(char firstChar, char sec, int index)
3206
        throws XMLStreamException
3207
    {
3208 12 1. checkSurrogateNameChar : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkSurrogateNameChar : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkSurrogateNameChar : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkSurrogateNameChar : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
5. checkSurrogateNameChar : changed conditional boundary → NO_COVERAGE
6. checkSurrogateNameChar : negated conditional → NO_COVERAGE
7. checkSurrogateNameChar : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. checkSurrogateNameChar : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. checkSurrogateNameChar : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. checkSurrogateNameChar : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. checkSurrogateNameChar : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. checkSurrogateNameChar : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
        if (firstChar >= 0xDC00) {
3209 1 1. checkSurrogateNameChar : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidFirstSurrogate → NO_COVERAGE
            reportInvalidFirstSurrogate(firstChar);
3210
        }
3211 24 1. checkSurrogateNameChar : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkSurrogateNameChar : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. checkSurrogateNameChar : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. checkSurrogateNameChar : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. checkSurrogateNameChar : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. checkSurrogateNameChar : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. checkSurrogateNameChar : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
8. checkSurrogateNameChar : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE
9. checkSurrogateNameChar : changed conditional boundary → NO_COVERAGE
10. checkSurrogateNameChar : changed conditional boundary → NO_COVERAGE
11. checkSurrogateNameChar : negated conditional → NO_COVERAGE
12. checkSurrogateNameChar : negated conditional → NO_COVERAGE
13. checkSurrogateNameChar : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. checkSurrogateNameChar : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
15. checkSurrogateNameChar : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
16. checkSurrogateNameChar : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
17. checkSurrogateNameChar : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
18. checkSurrogateNameChar : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
19. checkSurrogateNameChar : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
20. checkSurrogateNameChar : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
21. checkSurrogateNameChar : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
22. checkSurrogateNameChar : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
23. checkSurrogateNameChar : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
24. checkSurrogateNameChar : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
        if (sec < 0xDC00 || sec >= 0xE000) {
3212 1 1. checkSurrogateNameChar : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidSecondSurrogate → NO_COVERAGE
            reportInvalidSecondSurrogate(sec);
3213
        }
3214
        // And the composite, is it ok?
3215 18 1. checkSurrogateNameChar : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkSurrogateNameChar : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. checkSurrogateNameChar : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. checkSurrogateNameChar : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. checkSurrogateNameChar : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. checkSurrogateNameChar : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. checkSurrogateNameChar : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
8. checkSurrogateNameChar : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
9. checkSurrogateNameChar : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. checkSurrogateNameChar : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
11. checkSurrogateNameChar : Replaced operate with second operand → NO_COVERAGE
12. checkSurrogateNameChar : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
13. checkSurrogateNameChar : Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE
14. checkSurrogateNameChar : Replaced operate with second operand → NO_COVERAGE
15. checkSurrogateNameChar : Replaced Shift Left with Shift Right → NO_COVERAGE
16. checkSurrogateNameChar : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
17. checkSurrogateNameChar : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
18. checkSurrogateNameChar : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
        int val = ((firstChar - 0xD800) << 10) + 0x10000;
3216 13 1. checkSurrogateNameChar : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. checkSurrogateNameChar : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. checkSurrogateNameChar : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. checkSurrogateNameChar : Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → NO_COVERAGE
5. checkSurrogateNameChar : changed conditional boundary → NO_COVERAGE
6. checkSurrogateNameChar : negated conditional → NO_COVERAGE
7. checkSurrogateNameChar : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. checkSurrogateNameChar : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. checkSurrogateNameChar : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. checkSurrogateNameChar : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. checkSurrogateNameChar : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. checkSurrogateNameChar : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
13. checkSurrogateNameChar : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
        if (val > XmlConsts.MAX_UNICODE_CHAR) {
3217 1 1. checkSurrogateNameChar : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidXmlChar → NO_COVERAGE
            reportInvalidXmlChar(val);
3218
        }
3219
        // !!! TODO: xml 1.1 vs 1.0 rules: none valid for 1.0, many for 1.1
3220
        if (true) {
3221 1 1. checkSurrogateNameChar : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidNameChar → NO_COVERAGE
            reportInvalidNameChar(val, index);
3222
        }
3223 1 1. checkSurrogateNameChar : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
        return val;
3224
    }
3225
3226
    /**
3227
     * This method is similar to <code>checkSurrogate</code>, but
3228
     * returns the actual character code encoded by the surrogate
3229
     * pair. This is needed if further validation rules (such as name
3230
     * charactert checks) are to be done.
3231
     */
3232
    private int decodeSurrogate(char firstChar)
3233
        throws XMLStreamException
3234
    {
3235 12 1. decodeSurrogate : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeSurrogate : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. decodeSurrogate : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. decodeSurrogate : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
5. decodeSurrogate : changed conditional boundary → NO_COVERAGE
6. decodeSurrogate : negated conditional → NO_COVERAGE
7. decodeSurrogate : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. decodeSurrogate : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. decodeSurrogate : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. decodeSurrogate : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. decodeSurrogate : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. decodeSurrogate : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
        if (firstChar >= 0xDC00) {
3236 1 1. decodeSurrogate : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidFirstSurrogate → NO_COVERAGE
            reportInvalidFirstSurrogate(firstChar);
3237
        }
3238 9 1. decodeSurrogate : changed conditional boundary → NO_COVERAGE
2. decodeSurrogate : negated conditional → NO_COVERAGE
3. decodeSurrogate : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. decodeSurrogate : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. decodeSurrogate : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. decodeSurrogate : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. decodeSurrogate : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. decodeSurrogate : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. decodeSurrogate : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
        if (_inputPtr >= _inputEnd) {
3239 1 1. decodeSurrogate : removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE
            loadMoreGuaranteed();
3240
        }
3241 9 1. decodeSurrogate : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeSurrogate : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. decodeSurrogate : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. decodeSurrogate : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. decodeSurrogate : Replaced operate with second operand → NO_COVERAGE
6. decodeSurrogate : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. decodeSurrogate : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. decodeSurrogate : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. decodeSurrogate : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
        char sec = _inputBuffer[_inputPtr++];
3242 24 1. decodeSurrogate : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeSurrogate : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. decodeSurrogate : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. decodeSurrogate : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. decodeSurrogate : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. decodeSurrogate : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. decodeSurrogate : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
8. decodeSurrogate : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE
9. decodeSurrogate : changed conditional boundary → NO_COVERAGE
10. decodeSurrogate : changed conditional boundary → NO_COVERAGE
11. decodeSurrogate : negated conditional → NO_COVERAGE
12. decodeSurrogate : negated conditional → NO_COVERAGE
13. decodeSurrogate : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. decodeSurrogate : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
15. decodeSurrogate : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
16. decodeSurrogate : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
17. decodeSurrogate : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
18. decodeSurrogate : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
19. decodeSurrogate : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
20. decodeSurrogate : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
21. decodeSurrogate : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
22. decodeSurrogate : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
23. decodeSurrogate : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
24. decodeSurrogate : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
        if (sec < 0xDC00 || sec >= 0xE000) {
3243 1 1. decodeSurrogate : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidSecondSurrogate → NO_COVERAGE
            reportInvalidSecondSurrogate(sec);
3244
        }
3245
        // And the composite, is it ok?
3246 18 1. decodeSurrogate : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeSurrogate : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. decodeSurrogate : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. decodeSurrogate : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. decodeSurrogate : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. decodeSurrogate : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. decodeSurrogate : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
8. decodeSurrogate : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
9. decodeSurrogate : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. decodeSurrogate : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
11. decodeSurrogate : Replaced operate with second operand → NO_COVERAGE
12. decodeSurrogate : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
13. decodeSurrogate : Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE
14. decodeSurrogate : Replaced operate with second operand → NO_COVERAGE
15. decodeSurrogate : Replaced Shift Left with Shift Right → NO_COVERAGE
16. decodeSurrogate : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
17. decodeSurrogate : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
18. decodeSurrogate : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
        int val = ((firstChar - 0xD800) << 10) + 0x10000;
3247 13 1. decodeSurrogate : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeSurrogate : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. decodeSurrogate : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. decodeSurrogate : Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → NO_COVERAGE
5. decodeSurrogate : changed conditional boundary → NO_COVERAGE
6. decodeSurrogate : negated conditional → NO_COVERAGE
7. decodeSurrogate : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. decodeSurrogate : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. decodeSurrogate : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. decodeSurrogate : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. decodeSurrogate : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. decodeSurrogate : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
13. decodeSurrogate : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
        if (val > XmlConsts.MAX_UNICODE_CHAR) {
3248 1 1. decodeSurrogate : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidXmlChar → NO_COVERAGE
            reportInvalidXmlChar(val);
3249
        }
3250 1 1. decodeSurrogate : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
        return val;
3251
    }
3252
3253
    private void reportInvalidFirstSurrogate(char ch)
3254
        throws XMLStreamException
3255
    {
3256 1 1. reportInvalidFirstSurrogate : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE
        reportInputProblem("Invalid surrogate character (code 0x"+Integer.toHexString((int) ch)+"): can not start a surrogate pair");
3257
    }
3258
3259
    private void reportInvalidSecondSurrogate(char ch)
3260
        throws XMLStreamException
3261
    {
3262 1 1. reportInvalidSecondSurrogate : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE
        reportInputProblem("Invalid surrogate character (code "+Integer.toHexString((int) ch)+"): is not legal as the second part of a surrogate pair");
3263
    }
3264
3265
    /*
3266
    /**********************************************************************
3267
    /* Location handling
3268
    /**********************************************************************
3269
     */
3270
3271
    @Override
3272
    public XMLStreamLocation2 getCurrentLocation()
3273
    {
3274 2 1. getCurrentLocation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_config mutated with null check on object → SURVIVED
2. getCurrentLocation : mutated return of Object value for com/fasterxml/aalto/in/ReaderScanner::getCurrentLocation to ( if (x != null) null else throw new RuntimeException ) → KILLED
        return LocationImpl.fromZeroBased
3275 8 1. getCurrentLocation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_config mutated with null check on object → SURVIVED
2. getCurrentLocation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_pastBytesOrChars mutated with null check on object → SURVIVED
3. getCurrentLocation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. getCurrentLocation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currRow mutated with null check on object → SURVIVED
5. getCurrentLocation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
6. getCurrentLocation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → SURVIVED
7. getCurrentLocation : Replaced operate with second operand → KILLED
8. getCurrentLocation : Replaced operate with second operand → KILLED
            (_config.getPublicId(), _config.getSystemId(),
3276
             _pastBytesOrChars + _inputPtr, _currRow, _inputPtr - _rowStartOffset);
3277
    }
3278
3279
    @Override
3280
    public int getCurrentColumnNr() {
3281 4 1. getCurrentColumnNr : Replaced operate with second operand → NO_COVERAGE
2. getCurrentColumnNr : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
3. getCurrentColumnNr : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → NO_COVERAGE
4. getCurrentColumnNr : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
        return _inputPtr - _rowStartOffset;
3282
    }
3283
3284
    @Override
3285
    public long getStartingByteOffset() {
3286
        // N/A for this type
3287 6 1. getStartingByteOffset : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. getStartingByteOffset : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. getStartingByteOffset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. getStartingByteOffset : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
5. getStartingByteOffset : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. getStartingByteOffset : replaced return of long value with value + 1 for com/fasterxml/aalto/in/ReaderScanner::getStartingByteOffset → KILLED
        return -1L;
3288
    }
3289
3290
    @Override
3291
    public long getStartingCharOffset() {
3292 2 1. getStartingCharOffset : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_startRawOffset mutated with null check on object → SURVIVED
2. getStartingCharOffset : replaced return of long value with value + 1 for com/fasterxml/aalto/in/ReaderScanner::getStartingCharOffset → KILLED
        return _startRawOffset;
3293
    }
3294
3295
    @Override
3296
    public long getEndingByteOffset() throws XMLStreamException {
3297
        // N/A for this type
3298 6 1. getEndingByteOffset : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. getEndingByteOffset : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. getEndingByteOffset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. getEndingByteOffset : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
5. getEndingByteOffset : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. getEndingByteOffset : replaced return of long value with value + 1 for com/fasterxml/aalto/in/ReaderScanner::getEndingByteOffset → KILLED
        return -1L;
3299
    }
3300
3301
    @Override
3302
    public long getEndingCharOffset() throws XMLStreamException {
3303
        // Have to complete the token to know the ending location...
3304 7 1. getEndingCharOffset : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
2. getEndingCharOffset : changed conditional boundary to IFGE → SURVIVED
3. getEndingCharOffset : changed conditional boundary to IFLE → SURVIVED
4. getEndingCharOffset : negated conditional → KILLED
5. getEndingCharOffset : changed conditional boundary to IFGT → KILLED
6. getEndingCharOffset : changed conditional boundary to IFLT → KILLED
7. getEndingCharOffset : changed conditional boundary to IFNE → KILLED
        if (_tokenIncomplete) {
3305 1 1. getEndingCharOffset : removed call to com/fasterxml/aalto/in/ReaderScanner::finishToken → NO_COVERAGE
            finishToken();
3306
        }
3307 4 1. getEndingCharOffset : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_pastBytesOrChars mutated with null check on object → SURVIVED
2. getEndingCharOffset : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. getEndingCharOffset : Replaced operate with second operand → KILLED
4. getEndingCharOffset : replaced return of long value with value + 1 for com/fasterxml/aalto/in/ReaderScanner::getEndingCharOffset → KILLED
        return _pastBytesOrChars + _inputPtr;
3308
    }
3309
    
3310
    protected final void markLF(int offset)
3311
    {
3312 1 1. markLF : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → NO_COVERAGE
        _rowStartOffset = offset;
3313 8 1. markLF : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. markLF : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. markLF : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. markLF : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. markLF : Replaced operate with second operand → NO_COVERAGE
6. markLF : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. markLF : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currRow mutated with null check on object → NO_COVERAGE
8. markLF : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currRow mutated with null check on object → NO_COVERAGE
        ++_currRow;
3314
    }
3315
3316
    protected final void markLF()
3317
    {
3318 2 1. markLF : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. markLF : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → SURVIVED
        _rowStartOffset = _inputPtr;
3319 8 1. markLF : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currRow mutated with null check on object → SURVIVED
2. markLF : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currRow mutated with null check on object → SURVIVED
3. markLF : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. markLF : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. markLF : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. markLF : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. markLF : Replaced operate with second operand → KILLED
8. markLF : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        ++_currRow;
3320
    }
3321
3322
    protected final void setStartLocation() {
3323 4 1. setStartLocation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_pastBytesOrChars mutated with null check on object → SURVIVED
2. setStartLocation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. setStartLocation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_startRawOffset mutated with null check on object → SURVIVED
4. setStartLocation : Replaced operate with second operand → KILLED
        _startRawOffset = _pastBytesOrChars + _inputPtr;
3324 2 1. setStartLocation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currRow mutated with null check on object → SURVIVED
2. setStartLocation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_startRow mutated with null check on object → SURVIVED
        _startRow = _currRow;
3325 4 1. setStartLocation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. setStartLocation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → SURVIVED
3. setStartLocation : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_startColumn mutated with null check on object → SURVIVED
4. setStartLocation : Replaced operate with second operand → KILLED
        _startColumn = _inputPtr - _rowStartOffset;
3326
    }
3327
    
3328
    /*
3329
    /**********************************************************************
3330
    /* Input loading
3331
    /**********************************************************************
3332
     */
3333
3334
    @Override
3335
    protected final boolean loadMore() throws XMLStreamException
3336
    {
3337
        // If it's a block source, there's no Reader, or any more data:
3338 2 1. loadMore : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → SURVIVED
2. loadMore : negated conditional → KILLED
        if (_in == null) {
3339 6 1. loadMore : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. loadMore : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. loadMore : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. loadMore : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. loadMore : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. loadMore : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
            _inputEnd = 0;
3340 6 1. loadMore : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. loadMore : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. loadMore : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. loadMore : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. loadMore : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. loadMore : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
            return false;
3341
        }
3342
3343
        // Otherwise let's update offsets:
3344 4 1. loadMore : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_pastBytesOrChars mutated with null check on object → SURVIVED
2. loadMore : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
3. loadMore : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_pastBytesOrChars mutated with null check on object → SURVIVED
4. loadMore : Replaced operate with second operand → KILLED
        _pastBytesOrChars += _inputEnd;
3345 4 1. loadMore : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → SURVIVED
2. loadMore : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
3. loadMore : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → SURVIVED
4. loadMore : Replaced operate with second operand → KILLED
        _rowStartOffset -= _inputEnd;
3346 6 1. loadMore : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
2. loadMore : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. loadMore : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. loadMore : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. loadMore : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. loadMore : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
        _inputPtr = 0;
3347
3348
        try {
3349 8 1. loadMore : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → SURVIVED
2. loadMore : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
3. loadMore : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
4. loadMore : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. loadMore : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. loadMore : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. loadMore : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
8. loadMore : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
            int count = _in.read(_inputBuffer, 0, _inputBuffer.length);
3350 12 1. loadMore : changed conditional boundary → SURVIVED
2. loadMore : changed conditional boundary to IF_ICMPGT → SURVIVED
3. loadMore : changed conditional boundary to IF_ICMPGT → SURVIVED
4. loadMore : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. loadMore : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. loadMore : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. loadMore : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. loadMore : negated conditional → KILLED
9. loadMore : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. loadMore : changed conditional boundary to IF_ICMPEQ → KILLED
11. loadMore : changed conditional boundary to IF_ICMPLT → KILLED
12. loadMore : changed conditional boundary to IF_ICMPNE → KILLED
            if (count < 1) {
3351 6 1. loadMore : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
2. loadMore : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. loadMore : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. loadMore : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. loadMore : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. loadMore : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
                _inputEnd = 0;
3352 6 1. loadMore : changed conditional boundary to IFLE → SURVIVED
2. loadMore : changed conditional boundary to IFLT → SURVIVED
3. loadMore : negated conditional → KILLED
4. loadMore : changed conditional boundary to IFEQ → KILLED
5. loadMore : changed conditional boundary to IFGE → KILLED
6. loadMore : changed conditional boundary to IFGT → KILLED
                if (count == 0) {
3353
                    /* Sanity check; should never happen with correctly written
3354
                     * InputStreams...
3355
                     */
3356 2 1. loadMore : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
2. loadMore : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE
                    reportInputProblem("Reader returned 0 bytes, even when asked to read up to "+_inputBuffer.length);
3357
                }
3358 6 1. loadMore : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. loadMore : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. loadMore : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. loadMore : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. loadMore : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. loadMore : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
                return false;
3359
            }
3360 1 1. loadMore : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED
            _inputEnd = count;
3361 6 1. loadMore : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. loadMore : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. loadMore : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. loadMore : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. loadMore : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. loadMore : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
            return true;
3362
        } catch (IOException ioe) {
3363
            throw new IoStreamException(ioe);
3364
        }
3365
    }
3366
3367
    protected final char loadOne() throws XMLStreamException
3368
    {
3369 6 1. loadOne : negated conditional → NO_COVERAGE
2. loadOne : changed conditional boundary to IFEQ → NO_COVERAGE
3. loadOne : changed conditional boundary to IFGE → NO_COVERAGE
4. loadOne : changed conditional boundary to IFGT → NO_COVERAGE
5. loadOne : changed conditional boundary to IFLE → NO_COVERAGE
6. loadOne : changed conditional boundary to IFLT → NO_COVERAGE
        if (!loadMore()) {
3370 2 1. loadOne : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → NO_COVERAGE
2. loadOne : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE
            reportInputProblem("Unexpected end-of-input when trying to parse "+ErrorConsts.tokenTypeDesc(_currToken));
3371
        }
3372 10 1. loadOne : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. loadOne : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. loadOne : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. loadOne : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. loadOne : Replaced operate with second operand → NO_COVERAGE
6. loadOne : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. loadOne : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. loadOne : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. loadOne : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
10. loadOne : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
        return _inputBuffer[_inputPtr++];
3373
    }
3374
3375
    protected final char loadOne(int type)
3376
        throws XMLStreamException
3377
    {
3378 6 1. loadOne : changed conditional boundary to IFGE → SURVIVED
2. loadOne : changed conditional boundary to IFGT → SURVIVED
3. loadOne : negated conditional → KILLED
4. loadOne : changed conditional boundary to IFEQ → KILLED
5. loadOne : changed conditional boundary to IFLE → KILLED
6. loadOne : changed conditional boundary to IFLT → KILLED
        if (!loadMore()) {
3379 1 1. loadOne : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE
            reportInputProblem("Unexpected end-of-input when trying to parse "+ErrorConsts.tokenTypeDesc(type));
3380
        }
3381 10 1. loadOne : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. loadOne : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
3. loadOne : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED
4. loadOne : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. loadOne : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. loadOne : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. loadOne : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. loadOne : Replaced operate with second operand → KILLED
9. loadOne : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. loadOne : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
        return _inputBuffer[_inputPtr++];
3382
    }
3383
3384
    protected final boolean loadAndRetain(int nrOfChars)
3385
        throws XMLStreamException
3386
    {
3387
        /* first: can't move, if we were handed an immutable block
3388
         * (alternative to handing Reader as _in)
3389
         */
3390 2 1. loadAndRetain : negated conditional → NO_COVERAGE
2. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → NO_COVERAGE
        if (_in == null) {
3391 6 1. loadAndRetain : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. loadAndRetain : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. loadAndRetain : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. loadAndRetain : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. loadAndRetain : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. loadAndRetain : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
            return false;
3392
        }
3393
3394
        // otherwise, need to use cut'n pasted code from loadMore()...
3395
3396 4 1. loadAndRetain : Replaced operate with second operand → NO_COVERAGE
2. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_pastBytesOrChars mutated with null check on object → NO_COVERAGE
3. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_pastBytesOrChars mutated with null check on object → NO_COVERAGE
        _pastBytesOrChars += _inputPtr;
3397 4 1. loadAndRetain : Replaced operate with second operand → NO_COVERAGE
2. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → NO_COVERAGE
3. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → NO_COVERAGE
        _rowStartOffset -= _inputPtr;
3398
3399 3 1. loadAndRetain : Replaced operate with second operand → NO_COVERAGE
2. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
3. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
        int remaining = (_inputEnd - _inputPtr); // must be > 0
3400 9 1. loadAndRetain : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. loadAndRetain : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. loadAndRetain : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. loadAndRetain : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. loadAndRetain : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
7. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
9. loadAndRetain : removed call to java/lang/System::arraycopy → NO_COVERAGE
        System.arraycopy(_inputBuffer, _inputPtr, _inputBuffer, 0, remaining);
3401 6 1. loadAndRetain : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. loadAndRetain : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. loadAndRetain : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. loadAndRetain : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. loadAndRetain : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
        _inputPtr = 0;
3402 1 1. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
        _inputEnd = remaining; // temporarily set to cover copied stuff
3403
3404
        try {
3405
            do {
3406 3 1. loadAndRetain : Replaced operate with second operand → NO_COVERAGE
2. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
3. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
                int max = _inputBuffer.length - _inputEnd;
3407 3 1. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → NO_COVERAGE
2. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
3. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
                int count = _in.read(_inputBuffer, _inputEnd, max);
3408 12 1. loadAndRetain : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. loadAndRetain : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. loadAndRetain : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. loadAndRetain : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. loadAndRetain : changed conditional boundary → NO_COVERAGE
6. loadAndRetain : negated conditional → NO_COVERAGE
7. loadAndRetain : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. loadAndRetain : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. loadAndRetain : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. loadAndRetain : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. loadAndRetain : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
12. loadAndRetain : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
                if (count < 1) {
3409 6 1. loadAndRetain : negated conditional → NO_COVERAGE
2. loadAndRetain : changed conditional boundary to IFEQ → NO_COVERAGE
3. loadAndRetain : changed conditional boundary to IFGE → NO_COVERAGE
4. loadAndRetain : changed conditional boundary to IFGT → NO_COVERAGE
5. loadAndRetain : changed conditional boundary to IFLE → NO_COVERAGE
6. loadAndRetain : changed conditional boundary to IFLT → NO_COVERAGE
                    if (count == 0) {
3410
                        // Sanity check, should never happen with non-buggy readers/stream
3411 1 1. loadAndRetain : removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE
                        reportInputProblem("Reader returned 0 bytes, even when asked to read up to "+max);
3412
                    }
3413 6 1. loadAndRetain : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. loadAndRetain : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. loadAndRetain : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. loadAndRetain : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. loadAndRetain : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. loadAndRetain : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
                    return false;
3414
                }
3415 3 1. loadAndRetain : Replaced operate with second operand → NO_COVERAGE
2. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
3. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
                _inputEnd += count;
3416 8 1. loadAndRetain : changed conditional boundary → NO_COVERAGE
2. loadAndRetain : negated conditional → NO_COVERAGE
3. loadAndRetain : M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. loadAndRetain : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
5. loadAndRetain : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
6. loadAndRetain : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. loadAndRetain : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. loadAndRetain : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
            } while (_inputEnd < nrOfChars);
3417 6 1. loadAndRetain : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. loadAndRetain : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. loadAndRetain : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. loadAndRetain : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. loadAndRetain : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. loadAndRetain : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
            return true;
3418
        } catch (IOException ioe) {
3419
            throw new IoStreamException(ioe);
3420
        }
3421
    }
3422
}

Mutations

61

1.1
Location :
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location :
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location :
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR

4.4
Location :
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location :
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location :
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and fieldmTmpChar mutated with null check on object → SURVIVED

7.7
Location :
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

8.8
Location :
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

9.9
Location :
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

10.10
Location :
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

11.11
Location :
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

12.12
Location :
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and fieldmTmpChar mutated with null check on object → SURVIVED

85

1.1
Location :
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → SURVIVED

86

1.1
Location :
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

87

1.1
Location :
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

88

1.1
Location :
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

89

1.1
Location :
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location :
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location :
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location :
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location :
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location :
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_pastBytesOrChars mutated with null check on object → SURVIVED

90

1.1
Location :
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location :
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location :
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location :
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location :
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location :
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → SURVIVED

92

1.1
Location :
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_symbols mutated with null check on object → SURVIVED

98

1.1
Location :
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → NO_COVERAGE

99

1.1
Location :
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location :
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location :
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location :
Killed by : none
Bug fixed: CRCR replace with One, Substituted 4000 with 1 → NO_COVERAGE

5.5
Location :
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location :
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

100

1.1
Location :
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location :
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location :
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location :
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location :
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location :
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

7.7
Location :
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

101

1.1
Location :
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location :
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location :
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location :
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location :
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location :
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_pastBytesOrChars mutated with null check on object → NO_COVERAGE

102

1.1
Location :
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location :
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location :
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location :
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location :
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location :
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → NO_COVERAGE

104

1.1
Location :
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_symbols mutated with null check on object → NO_COVERAGE

110

1.1
Location : _releaseBuffers
Killed by : none
removed call to com/fasterxml/aalto/in/XmlScanner::_releaseBuffers → SURVIVED

111

1.1
Location : _releaseBuffers
Killed by : none
negated conditional → SURVIVED

2.2
Location : _releaseBuffers
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_symbols mutated with null check on object → SURVIVED

3.3
Location : _releaseBuffers
Killed by : none
changed conditional boundary to IFGE → SURVIVED

4.4
Location : _releaseBuffers
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : _releaseBuffers
Killed by : none
changed conditional boundary to IFLE → SURVIVED

6.6
Location : _releaseBuffers
Killed by : none
changed conditional boundary to IFLT → SURVIVED

7.7
Location : _releaseBuffers
Killed by : none
changed conditional boundary to IFNE → SURVIVED

112

1.1
Location : _releaseBuffers
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_config mutated with null check on object → SURVIVED

2.2
Location : _releaseBuffers
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_symbols mutated with null check on object → SURVIVED

3.3
Location : _releaseBuffers
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderConfig::updateCBSymbols → SURVIVED

120

1.1
Location : _releaseBuffers
Killed by : none
negated conditional → SURVIVED

2.2
Location : _releaseBuffers
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → SURVIVED

121

1.1
Location : _releaseBuffers
Killed by : none
negated conditional → SURVIVED

2.2
Location : _releaseBuffers
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

122

1.1
Location : _releaseBuffers
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_config mutated with null check on object → SURVIVED

2.2
Location : _releaseBuffers
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

3.3
Location : _releaseBuffers
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderConfig::freeFullCBuffer → SURVIVED

123

1.1
Location : _releaseBuffers
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

131

1.1
Location : _closeSource
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : _closeSource
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → NO_COVERAGE

132

1.1
Location : _closeSource
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → NO_COVERAGE

2.2
Location : _closeSource
Killed by : none
removed call to java/io/Reader::close → NO_COVERAGE

133

1.1
Location : _closeSource
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → NO_COVERAGE

146

1.1
Location : finishToken
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishToken
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishToken
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR

4.4
Location : finishToken
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : finishToken
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : finishToken
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED

147

1.1
Location : finishToken
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED

149

1.1
Location : finishToken
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::finishPI → NO_COVERAGE

152

1.1
Location : finishToken
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
removed call to com/fasterxml/aalto/in/ReaderScanner::finishCharacters → KILLED

155

1.1
Location : finishToken
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::finishComment → NO_COVERAGE

158

1.1
Location : finishToken
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::finishSpace → NO_COVERAGE

161

1.1
Location : finishToken
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishToken
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishToken
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishToken
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : finishToken
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : finishToken
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
removed call to com/fasterxml/aalto/in/ReaderScanner::finishDTD → KILLED

164

1.1
Location : finishToken
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
removed call to com/fasterxml/aalto/in/ReaderScanner::finishCData → KILLED

167

1.1
Location : finishToken
Killed by : none
removed call to com/fasterxml/aalto/impl/ErrorConsts::throwInternalError → NO_COVERAGE

176

1.1
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

2.2
Location : nextFromProlog
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED

3.3
Location : nextFromProlog
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IFGE → KILLED

4.4
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFGT → KILLED

5.5
Location : nextFromProlog
Killed by : none
changed conditional boundary to IFLE → SURVIVED

6.6
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFLT → KILLED

7.7
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFNE → KILLED

181

1.1
Location : nextFromProlog
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
removed call to com/fasterxml/aalto/in/ReaderScanner::setStartLocation → KILLED

186

1.1
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary → KILLED

2.2
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : nextFromProlog
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : nextFromProlog
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

187

1.1
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

2.2
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFEQ → KILLED

3.3
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFGE → KILLED

4.4
Location : nextFromProlog
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFLE → KILLED

6.6
Location : nextFromProlog
Killed by : none
changed conditional boundary to IFLT → SURVIVED

188

1.1
Location : nextFromProlog
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::setStartLocation → SURVIVED

189

1.1
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED

5.5
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

192

1.1
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

4.4
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

6.6
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

7.7
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

8.8
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Replaced operate with second operand → KILLED

9.9
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED

10.10
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Replaced bitwise AND with OR → KILLED

11.11
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

12.12
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

13.13
Location : nextFromProlog
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

14.14
Location : nextFromProlog
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

15.15
Location : nextFromProlog
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

195

1.1
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED

5.5
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : nextFromProlog
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

10.10
Location : nextFromProlog
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

11.11
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

198

1.1
Location : nextFromProlog
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromProlog
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR

4.4
Location : nextFromProlog
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED

5.5
Location : nextFromProlog
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
negated conditional → KILLED

6.6
Location : nextFromProlog
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

8.8
Location : nextFromProlog
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : nextFromProlog
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPGT → KILLED

10.10
Location : nextFromProlog
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : nextFromProlog
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPNE → KILLED

199

1.1
Location : nextFromProlog
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromProlog
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromProlog
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : nextFromProlog
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED

5.5
Location : nextFromProlog
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

6.6
Location : nextFromProlog
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : nextFromProlog
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : nextFromProlog
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

200

1.1
Location : nextFromProlog
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → SURVIVED

201

1.1
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE

5.5
Location : nextFromProlog
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : nextFromProlog
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

202

1.1
Location : nextFromProlog
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : nextFromProlog
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : nextFromProlog
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : nextFromProlog
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

203

1.1
Location : nextFromProlog
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : nextFromProlog
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

3.3
Location : nextFromProlog
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

4.4
Location : nextFromProlog
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : nextFromProlog
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : nextFromProlog
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

204

1.1
Location : nextFromProlog
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

205

1.1
Location : nextFromProlog
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::setStartLocation → NO_COVERAGE

206

1.1
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE

5.5
Location : nextFromProlog
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : nextFromProlog
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

209

1.1
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : nextFromProlog
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : nextFromProlog
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : nextFromProlog
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : nextFromProlog
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

10.10
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

11.11
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

13.13
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

210

1.1
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : nextFromProlog
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : nextFromProlog
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : nextFromProlog
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : nextFromProlog
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

212

1.1
Location : nextFromProlog
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

213

1.1
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE

5.5
Location : nextFromProlog
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : nextFromProlog
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

8.8
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

214

1.1
Location : nextFromProlog
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportPrologUnexpChar → NO_COVERAGE

220

1.1
Location : nextFromProlog
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : nextFromProlog
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : nextFromProlog
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

221

1.1
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : nextFromProlog
Killed by : none
Bug fixed: CRCR replace with One, Substituted 5 with 1 → NO_COVERAGE

5.5
Location : nextFromProlog
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : nextFromProlog
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

223

1.1
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : nextFromProlog
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : nextFromProlog
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : nextFromProlog
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

224

1.1
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 33 with 1 → KILLED

5.5
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : nextFromProlog
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

225

1.1
Location : nextFromProlog
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

227

1.1
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED

5.5
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : nextFromProlog
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

228

1.1
Location : nextFromProlog
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

233

1.1
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED

5.5
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

7.7
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

10.10
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

11.11
Location : nextFromProlog
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

12.12
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

13.13
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFEQ → KILLED

14.14
Location : nextFromProlog
Killed by : none
changed conditional boundary to IFGE → SURVIVED

15.15
Location : nextFromProlog
Killed by : none
changed conditional boundary to IFGT → SURVIVED

16.16
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFLE → KILLED

17.17
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFLT → KILLED

234

1.1
Location : nextFromProlog
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportPrologUnexpChar → NO_COVERAGE

236

1.1
Location : nextFromProlog
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

242

1.1
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

2.2
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED

3.3
Location : nextFromTree
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IFGE → KILLED

4.4
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFGT → KILLED

5.5
Location : nextFromTree
Killed by : none
changed conditional boundary to IFLE → SURVIVED

6.6
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFLT → KILLED

7.7
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFNE → KILLED

243

1.1
Location : nextFromTree
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
negated conditional → KILLED

2.2
Location : nextFromTree
Killed by : none
changed conditional boundary to IFGE → SURVIVED

3.3
Location : nextFromTree
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IFGT → KILLED

4.4
Location : nextFromTree
Killed by : none
changed conditional boundary to IFLE → SURVIVED

5.5
Location : nextFromTree
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IFLT → KILLED

6.6
Location : nextFromTree
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IFNE → KILLED

245

1.1
Location : nextFromTree
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

248

1.1
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED

8.8
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

9.9
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

10.10
Location : nextFromTree
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : nextFromTree
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

12.12
Location : nextFromTree
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPLT → KILLED

249

1.1
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

2.2
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_isEmptyTag mutated with null check on object → SURVIVED

3.3
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFGE → KILLED

4.4
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFGT → KILLED

5.5
Location : nextFromTree
Killed by : none
changed conditional boundary to IFLE → SURVIVED

6.6
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IFLT → KILLED

7.7
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFNE → KILLED

251

1.1
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_depth mutated with null check on object → SURVIVED

8.8
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_depth mutated with null check on object → SURVIVED

252

1.1
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED

5.5
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED

7.7
Location : nextFromTree
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

254

1.1
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED

5.5
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED

8.8
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

9.9
Location : nextFromTree
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGE → KILLED

10.10
Location : nextFromTree
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : nextFromTree
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

12.12
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

255

1.1
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currElem mutated with null check on object → SURVIVED

2.2
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currElem mutated with null check on object → SURVIVED

257

1.1
Location : nextFromTree
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : nextFromTree
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

3.3
Location : nextFromTree
Killed by : none
negated conditional → SURVIVED

4.4
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_lastNsDecl mutated with null check on object → SURVIVED

5.5
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_lastNsDecl mutated with null check on object → SURVIVED

6.6
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_depth mutated with null check on object → SURVIVED

7.7
Location : nextFromTree
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

8.8
Location : nextFromTree
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : nextFromTree
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : nextFromTree
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : nextFromTree
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

258

1.1
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_lastNsDecl mutated with null check on object → NO_COVERAGE

2.2
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_lastNsDecl mutated with null check on object → NO_COVERAGE

262

1.1
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

2.2
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_entityPending mutated with null check on object → SURVIVED

3.3
Location : nextFromTree
Killed by : none
changed conditional boundary to IFGE → SURVIVED

4.4
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IFGT → KILLED

5.5
Location : nextFromTree
Killed by : none
changed conditional boundary to IFLE → SURVIVED

6.6
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IFLT → KILLED

7.7
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IFNE → KILLED

263

1.1
Location : nextFromTree
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : nextFromTree
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : nextFromTree
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : nextFromTree
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : nextFromTree
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_entityPending mutated with null check on object → NO_COVERAGE

264

1.1
Location : nextFromTree
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

269

1.1
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
removed call to com/fasterxml/aalto/in/ReaderScanner::setStartLocation → KILLED

274

1.1
Location : nextFromTree
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary → KILLED

2.2
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : nextFromTree
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

275

1.1
Location : nextFromTree
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

2.2
Location : nextFromTree
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IFEQ → KILLED

3.3
Location : nextFromTree
Killed by : none
changed conditional boundary to IFGE → SURVIVED

4.4
Location : nextFromTree
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : nextFromTree
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IFLE → KILLED

6.6
Location : nextFromTree
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IFLT → KILLED

276

1.1
Location : nextFromTree
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::setStartLocation → NO_COVERAGE

277

1.1
Location : nextFromTree
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : nextFromTree
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : nextFromTree
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : nextFromTree
Killed by : none
Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE

5.5
Location : nextFromTree
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : nextFromTree
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

280

1.1
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

2.2
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

285

1.1
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED

5.5
Location : nextFromTree
Killed by : none
negated conditional → TIMED_OUT

6.6
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : nextFromTree
Killed by : none
changed conditional boundary to IF_ICMPEQ → TIMED_OUT

8.8
Location : nextFromTree
Killed by : none
changed conditional boundary to IF_ICMPGE → TIMED_OUT

9.9
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

10.10
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

11.11
Location : nextFromTree
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPLT → KILLED

286

1.1
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

8.8
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

287

1.1
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

4.4
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

6.6
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

7.7
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

8.8
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Replaced operate with second operand → KILLED

9.9
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED

10.10
Location : nextFromTree
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary → KILLED

11.11
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

12.12
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

13.13
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

14.14
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

15.15
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

16.16
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

17.17
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

18.18
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

19.19
Location : nextFromTree
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

20.20
Location : nextFromTree
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

21.21
Location : nextFromTree
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

22.22
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

23.23
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

288

1.1
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 33 with 1 → KILLED

5.5
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : nextFromTree
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : nextFromTree
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : nextFromTree
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

289

1.1
Location : nextFromTree
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

291

1.1
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED

5.5
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

10.10
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

11.11
Location : nextFromTree
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPLT → KILLED

292

1.1
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

294

1.1
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED

5.5
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : nextFromTree
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : nextFromTree
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : nextFromTree
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPLT → KILLED

295

1.1
Location : nextFromTree
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

297

1.1
Location : nextFromTree
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

299

1.1
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 38 with 1 → KILLED

5.5
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

6.6
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

10.10
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

11.11
Location : nextFromTree
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPLT → KILLED

300

1.1
Location : nextFromTree
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : nextFromTree
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : nextFromTree
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : nextFromTree
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : nextFromTree
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : nextFromTree
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

304

1.1
Location : nextFromTree
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : nextFromTree
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : nextFromTree
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : nextFromTree
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : nextFromTree
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

305

1.1
Location : nextFromTree
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : nextFromTree
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

3.3
Location : nextFromTree
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

4.4
Location : nextFromTree
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : nextFromTree
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : nextFromTree
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

306

1.1
Location : nextFromTree
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : nextFromTree
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : nextFromTree
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : nextFromTree
Killed by : none
Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE

5.5
Location : nextFromTree
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → NO_COVERAGE

7.7
Location : nextFromTree
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

312

1.1
Location : nextFromTree
Killed by : none
removed negation → NO_COVERAGE

2.2
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and fieldmTmpChar mutated with null check on object → NO_COVERAGE

317

1.1
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and fieldmTmpChar mutated with null check on object → SURVIVED

320

1.1
Location : nextFromTree
Killed by : none
negated conditional → SURVIVED

2.2
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED

3.3
Location : nextFromTree
Killed by : none
changed conditional boundary to IFGE → SURVIVED

4.4
Location : nextFromTree
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : nextFromTree
Killed by : none
changed conditional boundary to IFLE → SURVIVED

6.6
Location : nextFromTree
Killed by : none
changed conditional boundary to IFLT → SURVIVED

7.7
Location : nextFromTree
Killed by : none
changed conditional boundary to IFNE → SURVIVED

321

1.1
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED

323

1.1
Location : nextFromTree
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
removed call to com/fasterxml/aalto/in/ReaderScanner::finishCharacters → KILLED

325

1.1
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : nextFromTree
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR

4.4
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED

5.5
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : nextFromTree
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED

7.7
Location : nextFromTree
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

334

1.1
Location : _nextEntity
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

336

1.1
Location : _nextEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : _nextEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : _nextEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : _nextEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE

5.5
Location : _nextEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : _nextEntity
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → NO_COVERAGE

7.7
Location : _nextEntity
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

347

1.1
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : handlePrologDeclStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handlePrologDeclStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

348

1.1
Location : handlePrologDeclStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

350

1.1
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handlePrologDeclStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handlePrologDeclStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handlePrologDeclStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

351

1.1
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED

5.5
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPLT → KILLED

352

1.1
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : handlePrologDeclStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handlePrologDeclStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

353

1.1
Location : handlePrologDeclStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

355

1.1
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handlePrologDeclStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handlePrologDeclStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handlePrologDeclStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

356

1.1
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED

5.5
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

357

1.1
Location : handlePrologDeclStart
Killed by : none
negated conditional → SURVIVED

2.2
Location : handlePrologDeclStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED

3.3
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IFGE → SURVIVED

4.4
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IFLE → SURVIVED

6.6
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IFLT → SURVIVED

7.7
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IFNE → SURVIVED

358

1.1
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handlePrologDeclStart
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : handlePrologDeclStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → NO_COVERAGE

360

1.1
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
removed call to com/fasterxml/aalto/in/ReaderScanner::finishComment → KILLED

362

1.1
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED

5.5
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handlePrologDeclStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED

7.7
Location : handlePrologDeclStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

364

1.1
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 68 with 1 → KILLED

5.5
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

6.6
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

365

1.1
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

2.2
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IFGE → KILLED

3.3
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IFGT → KILLED

4.4
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IFLE → SURVIVED

5.5
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IFLT → SURVIVED

6.6
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IFNE → KILLED

368

1.1
Location : handlePrologDeclStart
Killed by : none
negated conditional → SURVIVED

2.2
Location : handlePrologDeclStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED

3.3
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IFEQ → SURVIVED

4.4
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IFGE → SURVIVED

5.5
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IFGT → SURVIVED

6.6
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IFLE → SURVIVED

7.7
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IFLT → SURVIVED

369

1.1
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

2.2
Location : handlePrologDeclStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED

3.3
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IFGE → SURVIVED

4.4
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IFGT → KILLED

5.5
Location : handlePrologDeclStart
Killed by : none
changed conditional boundary to IFLE → SURVIVED

6.6
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IFLT → KILLED

7.7
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IFNE → KILLED

370

1.1
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handlePrologDeclStart
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : handlePrologDeclStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::finishDTD → NO_COVERAGE

371

1.1
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : handlePrologDeclStart
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : handlePrologDeclStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → NO_COVERAGE

374

1.1
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 11 with 1 → KILLED

5.5
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handlePrologDeclStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

381

1.1
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handlePrologDeclStart
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : handlePrologDeclStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → NO_COVERAGE

382

1.1
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handlePrologDeclStart
Killed by : none
Bug fixed: CRCR replace with One, Substituted 4 with 1 → NO_COVERAGE

5.5
Location : handlePrologDeclStart
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : handlePrologDeclStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → NO_COVERAGE

383

1.1
Location : handlePrologDeclStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportPrologUnexpChar → NO_COVERAGE

384

1.1
Location : handlePrologDeclStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → NO_COVERAGE

2.2
Location : handlePrologDeclStart
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

390

1.1
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
removed call to com/fasterxml/aalto/in/ReaderScanner::matchAsciiKeyword → KILLED

392

1.1
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

393

1.1
Location : handleDtdStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenName mutated with null check on object → SURVIVED

394

1.1
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

398

1.1
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 80 with 1 → KILLED

5.5
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

6.6
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testInvalidDup(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPGT → KILLED

10.10
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testInvalidDup(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPGT → KILLED

11.11
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPLT → KILLED

399

1.1
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
removed call to com/fasterxml/aalto/in/ReaderScanner::matchAsciiKeyword → KILLED

400

1.1
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

401

1.1
Location : handleDtdStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_publicId mutated with null check on object → SURVIVED

402

1.1
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

403

1.1
Location : handleDtdStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_systemId mutated with null check on object → SURVIVED

404

1.1
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

405

1.1
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with One, Substituted 83 with 1 → KILLED

5.5
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
negated conditional → KILLED

6.6
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testInvalidDup(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testInvalidDup(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPGT → KILLED

10.10
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testInvalidDup(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPGT → KILLED

11.11
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPLT → KILLED

406

1.1
Location : handleDtdStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::matchAsciiKeyword → NO_COVERAGE

407

1.1
Location : handleDtdStart
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleDtdStart
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleDtdStart
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleDtdStart
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleDtdStart
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

408

1.1
Location : handleDtdStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_publicId mutated with null check on object → NO_COVERAGE

409

1.1
Location : handleDtdStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_systemId mutated with null check on object → NO_COVERAGE

410

1.1
Location : handleDtdStart
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleDtdStart
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleDtdStart
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleDtdStart
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : handleDtdStart
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

412

1.1
Location : handleDtdStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_systemId mutated with null check on object → SURVIVED

2.2
Location : handleDtdStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_publicId mutated with null check on object → SURVIVED

418

1.1
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED

5.5
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

6.6
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : handleDtdStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleDtdStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPLT → KILLED

419

1.1
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handleDtdStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED

420

1.1
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 11 with 1 → KILLED

5.5
Location : handleDtdStart
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handleDtdStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED

7.7
Location : handleDtdStart
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED

423

1.1
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with One, Substituted 91 with 1 → KILLED

5.5
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
negated conditional → KILLED

6.6
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleDtdStart
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

8.8
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPGT → KILLED

10.10
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPNE → KILLED

424

1.1
Location : handleDtdStart
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : handleDtdStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_systemId mutated with null check on object → NO_COVERAGE

427

1.1
Location : handleDtdStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportTreeUnexpChar → NO_COVERAGE

433

1.1
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handleDtdStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED

434

1.1
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with One, Substituted 11 with 1 → KILLED

5.5
Location : handleDtdStart
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handleDtdStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED

7.7
Location : handleDtdStart
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED

440

1.1
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary → KILLED

2.2
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

441

1.1
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → KILLED

443

1.1
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

446

1.1
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED

5.5
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPLT → KILLED

447

1.1
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

448

1.1
Location : handleCommentOrCdataStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

450

1.1
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

451

1.1
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED

5.5
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

8.8
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

10.10
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

452

1.1
Location : handleCommentOrCdataStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportTreeUnexpChar → NO_COVERAGE

454

1.1
Location : handleCommentOrCdataStart
Killed by : none
negated conditional → SURVIVED

2.2
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED

3.3
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IFGE → SURVIVED

4.4
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IFLE → SURVIVED

6.6
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IFLT → SURVIVED

7.7
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IFNE → SURVIVED

455

1.1
Location : handleCommentOrCdataStart
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCommentOrCdataStart
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleCommentOrCdataStart
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleCommentOrCdataStart
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleCommentOrCdataStart
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → NO_COVERAGE

457

1.1
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
removed call to com/fasterxml/aalto/in/ReaderScanner::finishComment → KILLED

459

1.1
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED

5.5
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED

7.7
Location : handleCommentOrCdataStart
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

463

1.1
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 91 with 1 → KILLED

5.5
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

6.6
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

464

1.1
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED

5.5
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED

465

1.1
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

4.4
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

6.6
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

7.7
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

8.8
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED

9.9
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary → KILLED

10.10
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Changed increment from 1 to -1 → KILLED

11.11
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

12.12
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

13.13
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

14.14
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

15.15
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

16.16
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

17.17
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPLT → KILLED

18.18
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPNE → KILLED

19.19
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED

20.20
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

21.21
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
UOI Mutator: Removed unary increment of local variable → KILLED

22.22
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
UOI Mutator: Reversed increment of local variable → KILLED

466

1.1
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary → KILLED

2.2
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

3.3
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

467

1.1
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → KILLED

469

1.1
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Replaced operate with second operand → KILLED

6.6
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

470

1.1
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

2.2
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

3.3
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

4.4
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

5.5
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPLT → KILLED

6.6
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPNE → KILLED

471

1.1
Location : handleCommentOrCdataStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportTreeUnexpChar → NO_COVERAGE

474

1.1
Location : handleCommentOrCdataStart
Killed by : none
negated conditional → SURVIVED

2.2
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED

3.3
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IFGE → SURVIVED

4.4
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IFLE → SURVIVED

6.6
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IFLT → SURVIVED

7.7
Location : handleCommentOrCdataStart
Killed by : none
changed conditional boundary to IFNE → SURVIVED

475

1.1
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handleCommentOrCdataStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED

477

1.1
Location : handleCommentOrCdataStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::finishCData → NO_COVERAGE

479

1.1
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED

5.5
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handleCommentOrCdataStart
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

481

1.1
Location : handleCommentOrCdataStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportTreeUnexpChar → NO_COVERAGE

482

1.1
Location : handleCommentOrCdataStart
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCommentOrCdataStart
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleCommentOrCdataStart
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleCommentOrCdataStart
Killed by : none
Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE

5.5
Location : handleCommentOrCdataStart
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : handleCommentOrCdataStart
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

488

1.1
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED

5.5
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED

491

1.1
Location : handlePIStart
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

492

1.1
Location : handlePIStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

495

1.1
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

496

1.1
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenName mutated with null check on object → SURVIVED

498

1.1
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenName mutated with null check on object → SURVIVED

499

1.1
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED

5.5
Location : handlePIStart
Killed by : none
negated conditional → SURVIVED

6.6
Location : handlePIStart
Killed by : none
negated conditional → SURVIVED

7.7
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenName mutated with null check on object → SURVIVED

9.9
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

10.10
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

11.11
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

12.12
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

13.13
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

14.14
Location : handlePIStart
Killed by : none
changed conditional boundary to IFGE → SURVIVED

15.15
Location : handlePIStart
Killed by : none
changed conditional boundary to IFGT → SURVIVED

16.16
Location : handlePIStart
Killed by : none
changed conditional boundary to IFLE → SURVIVED

17.17
Location : handlePIStart
Killed by : none
changed conditional boundary to IFLT → SURVIVED

18.18
Location : handlePIStart
Killed by : none
changed conditional boundary to IFNE → SURVIVED

500

1.1
Location : handlePIStart
Killed by : none
negated conditional → NO_COVERAGE

501

1.1
Location : handlePIStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE

509

1.1
Location : handlePIStart
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

510

1.1
Location : handlePIStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

512

1.1
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

513

1.1
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED

5.5
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary → KILLED

6.6
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

7.7
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

9.9
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

10.10
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

516

1.1
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePIStart
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR

4.4
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED

5.5
Location : handlePIStart
Killed by : none
negated conditional → SURVIVED

6.6
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

8.8
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

517

1.1
Location : handlePIStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

518

1.1
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED

5.5
Location : handlePIStart
Killed by : none
negated conditional → SURVIVED

6.6
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

8.8
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

519

1.1
Location : handlePIStart
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handlePIStart
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

520

1.1
Location : handlePIStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

522

1.1
Location : handlePIStart
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handlePIStart
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handlePIStart
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handlePIStart
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : handlePIStart
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handlePIStart
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

10.10
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

11.11
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

13.13
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

523

1.1
Location : handlePIStart
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handlePIStart
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handlePIStart
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handlePIStart
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handlePIStart
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handlePIStart
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

525

1.1
Location : handlePIStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

526

1.1
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

4.4
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

6.6
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

7.7
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED

8.8
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED

9.9
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

10.10
Location : handlePIStart
Killed by : none
negated conditional → SURVIVED

11.11
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

12.12
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

13.13
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

14.14
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

15.15
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

16.16
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

17.17
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

18.18
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

19.19
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

20.20
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

21.21
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

22.22
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

527

1.1
Location : handlePIStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwInvalidSpace → NO_COVERAGE

529

1.1
Location : handlePIStart
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

530

1.1
Location : handlePIStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

532

1.1
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

2.2
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

533

1.1
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED

5.5
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary → KILLED

6.6
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

7.7
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

9.9
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

10.10
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

11.11
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

12.12
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

13.13
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

536

1.1
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

8.8
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

539

1.1
Location : handlePIStart
Killed by : none
negated conditional → SURVIVED

2.2
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED

3.3
Location : handlePIStart
Killed by : none
changed conditional boundary to IFGE → SURVIVED

4.4
Location : handlePIStart
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : handlePIStart
Killed by : none
changed conditional boundary to IFLE → SURVIVED

6.6
Location : handlePIStart
Killed by : none
changed conditional boundary to IFLT → SURVIVED

7.7
Location : handlePIStart
Killed by : none
changed conditional boundary to IFNE → SURVIVED

540

1.1
Location : handlePIStart
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handlePIStart
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handlePIStart
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handlePIStart
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handlePIStart
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → NO_COVERAGE

542

1.1
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
removed call to com/fasterxml/aalto/in/ReaderScanner::finishPI → KILLED

545

1.1
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED

5.5
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

8.8
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

10.10
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

546

1.1
Location : handlePIStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportMissingPISpace → NO_COVERAGE

548

1.1
Location : handlePIStart
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

549

1.1
Location : handlePIStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

551

1.1
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

552

1.1
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED

5.5
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handlePIStart
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

8.8
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

10.10
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

553

1.1
Location : handlePIStart
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportMissingPISpace → NO_COVERAGE

555

1.1
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED

556

1.1
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handlePIStart
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED

559

1.1
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED

5.5
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handlePIStart
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

570

1.1
Location : handleCharEntity
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

571

1.1
Location : handleCharEntity
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

573

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

574

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

575

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 120 with 1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

577

1.1
Location : handleCharEntity
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

578

1.1
Location : handleCharEntity
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

580

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

581

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

584

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 4 with 1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

585

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 57 with 1 → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 48 with 1 → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : handleCharEntity
Killed by : none
changed conditional boundary → NO_COVERAGE

11.11
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

12.12
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

13.13
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

14.14
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

15.15
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

16.16
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

17.17
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

18.18
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

19.19
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

20.20
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

21.21
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

22.22
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

23.23
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

586

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 48 with 1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
Replaced operate with second operand → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

587

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 97 with 1 → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 102 with 1 → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : handleCharEntity
Killed by : none
changed conditional boundary → NO_COVERAGE

11.11
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

12.12
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

13.13
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

14.14
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

15.15
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

16.16
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

17.17
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

18.18
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

19.19
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

20.20
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

21.21
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

22.22
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

23.23
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

588

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 97 with 1 → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
Replaced operate with second operand → NO_COVERAGE

10.10
Location : handleCharEntity
Killed by : none
Replaced operate with second operand → NO_COVERAGE

11.11
Location : handleCharEntity
Killed by : none
Replaced operate with second operand → NO_COVERAGE

12.12
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

589

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65 with 1 → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 70 with 1 → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : handleCharEntity
Killed by : none
changed conditional boundary → NO_COVERAGE

11.11
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

12.12
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

13.13
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

14.14
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

15.15
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

16.16
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

17.17
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

18.18
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

19.19
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

20.20
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

21.21
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

22.22
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

23.23
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

590

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65 with 1 → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
Replaced operate with second operand → NO_COVERAGE

10.10
Location : handleCharEntity
Killed by : none
Replaced operate with second operand → NO_COVERAGE

11.11
Location : handleCharEntity
Killed by : none
Replaced operate with second operand → NO_COVERAGE

12.12
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

592

1.1
Location : handleCharEntity
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE

594

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

13.13
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

595

1.1
Location : handleCharEntity
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportEntityOverflow → NO_COVERAGE

599

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

600

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 57 with 1 → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 48 with 1 → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : handleCharEntity
Killed by : none
changed conditional boundary → NO_COVERAGE

11.11
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

12.12
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

13.13
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

14.14
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

15.15
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

16.16
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

17.17
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

18.18
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

19.19
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

20.20
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

21.21
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

22.22
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

23.23
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

601

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
Replaced operate with second operand → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 48 with 1 → NO_COVERAGE

10.10
Location : handleCharEntity
Killed by : none
Replaced operate with second operand → NO_COVERAGE

11.11
Location : handleCharEntity
Killed by : none
Replaced operate with second operand → NO_COVERAGE

12.12
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

602

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

13.13
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

603

1.1
Location : handleCharEntity
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportEntityOverflow → NO_COVERAGE

606

1.1
Location : handleCharEntity
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE

608

1.1
Location : handleCharEntity
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

609

1.1
Location : handleCharEntity
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

611

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

616

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

617

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

12.12
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

618

1.1
Location : handleCharEntity
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidXmlChar → NO_COVERAGE

620

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65535 with 1 → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

10.10
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

12.12
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

14.14
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

15.15
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

16.16
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

17.17
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

18.18
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

19.19
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

20.20
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

21.21
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

22.22
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

621

1.1
Location : handleCharEntity
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidXmlChar → NO_COVERAGE

623

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

12.12
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

625

1.1
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

10.10
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

11.11
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE

12.12
Location : handleCharEntity
Killed by : none
Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE

13.13
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

14.14
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

15.15
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

16.16
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

17.17
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

18.18
Location : handleCharEntity
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

19.19
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

20.20
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

21.21
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

22.22
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

23.23
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

24.24
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

25.25
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

26.26
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

27.27
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

28.28
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

29.29
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

30.30
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

31.31
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

32.32
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

33.33
Location : handleCharEntity
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

626

1.1
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : handleCharEntity
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleCharEntity
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_xml11 mutated with null check on object → NO_COVERAGE

4.4
Location : handleCharEntity
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

5.5
Location : handleCharEntity
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

6.6
Location : handleCharEntity
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

7.7
Location : handleCharEntity
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

8.8
Location : handleCharEntity
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

9.9
Location : handleCharEntity
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

10.10
Location : handleCharEntity
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

11.11
Location : handleCharEntity
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

12.12
Location : handleCharEntity
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

13.13
Location : handleCharEntity
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

627

1.1
Location : handleCharEntity
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidXmlChar → NO_COVERAGE

631

1.1
Location : handleCharEntity
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

637

1.1
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED

638

1.1
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currNsCount mutated with null check on object → SURVIVED

648

1.1
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

649

1.1
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

655

1.1
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenName mutated with null check on object → SURVIVED

656

1.1
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currElem mutated with null check on object → SURVIVED

2.2
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currElem mutated with null check on object → SURVIVED

659

1.1
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

662

1.1
Location : handleStartElement
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

663

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

665

1.1
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

667

1.1
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary → KILLED

6.6
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

7.7
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

9.9
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGE → KILLED

10.10
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

669

1.1
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR

4.4
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

6.6
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPLT → KILLED

670

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

671

1.1
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

6.6
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPLT → KILLED

672

1.1
Location : handleStartElement
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

673

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

675

1.1
Location : handleStartElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

10.10
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

11.11
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

13.13
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

676

1.1
Location : handleStartElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

678

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

679

1.1
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

4.4
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

6.6
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

7.7
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED

8.8
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED

9.9
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

10.10
Location : handleStartElement
Killed by : none
negated conditional → SURVIVED

11.11
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

12.12
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

13.13
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

14.14
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

15.15
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

16.16
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

17.17
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

18.18
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

19.19
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPLT → KILLED

20.20
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

21.21
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPNE → KILLED

22.22
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

680

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwInvalidSpace → NO_COVERAGE

682

1.1
Location : handleStartElement
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

3.3
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

683

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

685

1.1
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Replaced operate with second operand → KILLED

6.6
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

686

1.1
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

7.7
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

9.9
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGE → KILLED

10.10
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

11.11
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

12.12
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

13.13
Location : handleStartElement
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPNE → KILLED

687

1.1
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

4.4
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

6.6
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

7.7
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED

8.8
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED

9.9
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

10.10
Location : handleStartElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

11.11
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

12.12
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

13.13
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

14.14
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

15.15
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

16.16
Location : handleStartElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

17.17
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

18.18
Location : handleStartElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

19.19
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

20.20
Location : handleStartElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

21.21
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

22.22
Location : handleStartElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

688

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE

692

1.1
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handleStartElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

693

1.1
Location : handleStartElement
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

694

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

696

1.1
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

697

1.1
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

8.8
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

10.10
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

698

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE

700

1.1
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_isEmptyTag mutated with null check on object → SURVIVED

702

1.1
Location : handleStartElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : handleStartElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleStartElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : handleStartElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPLT → KILLED

703

1.1
Location : handleStartElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_isEmptyTag mutated with null check on object → SURVIVED

705

1.1
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

6.6
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPLT → KILLED

706

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE

715

1.1
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

716

1.1
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

4.4
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

6.6
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

7.7
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

8.8
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

9.9
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

10.10
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

11.11
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

12.12
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional of IF_ACMP → KILLED

719

1.1
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

2.2
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional of IF_ACMP → KILLED

720

1.1
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

723

1.1
Location : handleStartElement
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

726

1.1
Location : handleStartElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

732

1.1
Location : handleStartElement
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

3.3
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

733

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

735

1.1
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Replaced operate with second operand → KILLED

6.6
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

736

1.1
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

7.7
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

9.9
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGE → KILLED

10.10
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

11.11
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

12.12
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

13.13
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPNE → KILLED

739

1.1
Location : handleStartElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

740

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

741

1.1
Location : handleStartElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

742

1.1
Location : handleStartElement
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

743

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

745

1.1
Location : handleStartElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

10.10
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

11.11
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

13.13
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

746

1.1
Location : handleStartElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

748

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

749

1.1
Location : handleStartElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE

8.8
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE

9.9
Location : handleStartElement
Killed by : none
negated conditional → NO_COVERAGE

10.10
Location : handleStartElement
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : handleStartElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

12.12
Location : handleStartElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

14.14
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

15.15
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

16.16
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

17.17
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

18.18
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

19.19
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

20.20
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

21.21
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

22.22
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

750

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwInvalidSpace → NO_COVERAGE

754

1.1
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 61 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

6.6
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

8.8
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

10.10
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPNE → KILLED

755

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE

760

1.1
Location : handleStartElement
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

3.3
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

761

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

763

1.1
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Replaced operate with second operand → KILLED

6.6
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

764

1.1
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

7.7
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

9.9
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGE → KILLED

10.10
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

11.11
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

12.12
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

13.13
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPNE → KILLED

767

1.1
Location : handleStartElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

768

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

769

1.1
Location : handleStartElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

770

1.1
Location : handleStartElement
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

771

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

773

1.1
Location : handleStartElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

10.10
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

11.11
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

13.13
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

774

1.1
Location : handleStartElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

776

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

777

1.1
Location : handleStartElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE

8.8
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE

9.9
Location : handleStartElement
Killed by : none
negated conditional → NO_COVERAGE

10.10
Location : handleStartElement
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : handleStartElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

12.12
Location : handleStartElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

14.14
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

15.15
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

16.16
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

17.17
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

18.18
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

19.19
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

20.20
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

21.21
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

22.22
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

778

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwInvalidSpace → NO_COVERAGE

782

1.1
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

4.4
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

6.6
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

7.7
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 34 with 1 → KILLED

8.8
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 39 with 1 → KILLED

9.9
Location : handleStartElement
Killed by : none
negated conditional → SURVIVED

10.10
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

11.11
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

12.12
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

13.13
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

14.14
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

15.15
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

16.16
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

17.17
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

18.18
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

19.19
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

20.20
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPLT → KILLED

21.21
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

22.22
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPNE → KILLED

783

1.1
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE

790

1.1
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

2.2
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IFGE → KILLED

3.3
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IFGT → KILLED

4.4
Location : handleStartElement
Killed by : none
changed conditional boundary to IFLE → SURVIVED

5.5
Location : handleStartElement
Killed by : none
changed conditional boundary to IFLT → SURVIVED

6.6
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IFNE → KILLED

791

1.1
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
removed call to com/fasterxml/aalto/in/ReaderScanner::handleNsDeclaration → KILLED

792

1.1
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Replaced operate with second operand → KILLED

6.6
Location : handleStartElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currNsCount mutated with null check on object → SURVIVED

8.8
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currNsCount mutated with null check on object → SURVIVED

799

1.1
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCollector mutated with null check on object → SURVIVED

800

1.1
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : handleStartElement
Killed by : none
changed conditional boundary to IFEQ → SURVIVED

4.4
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFGT → KILLED

5.5
Location : handleStartElement
Killed by : none
changed conditional boundary to IFLE → SURVIVED

6.6
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFLT → KILLED

7.7
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFNE → KILLED

801

1.1
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCollector mutated with null check on object → NO_COVERAGE

802

1.1
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCollector mutated with null check on object → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE

804

1.1
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCount mutated with null check on object → SURVIVED

806

1.1
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_depth mutated with null check on object → SURVIVED

8.8
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_depth mutated with null check on object → SURVIVED

812

1.1
Location : handleStartElement
Killed by : none
negated conditional → SURVIVED

2.2
Location : handleStartElement
Killed by : none
changed conditional boundary to IFEQ → SURVIVED

3.3
Location : handleStartElement
Killed by : none
changed conditional boundary to IFGE → SURVIVED

4.4
Location : handleStartElement
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : handleStartElement
Killed by : none
changed conditional boundary to IFLE → SURVIVED

6.6
Location : handleStartElement
Killed by : none
changed conditional boundary to IFLT → SURVIVED

813

1.1
Location : handleStartElement
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

814

1.1
Location : handleStartElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenName mutated with null check on object → NO_COVERAGE

7.7
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportUnboundPrefix → NO_COVERAGE

816

1.1
Location : handleStartElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

7.7
Location : handleStartElement
Killed by : none
negated conditional → NO_COVERAGE

8.8
Location : handleStartElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

9.9
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCount mutated with null check on object → NO_COVERAGE

10.10
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

11.11
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

13.13
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

14.14
Location : handleStartElement
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

15.15
Location : handleStartElement
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

16.16
Location : handleStartElement
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

17.17
Location : handleStartElement
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

18.18
Location : handleStartElement
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

817

1.1
Location : handleStartElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCollector mutated with null check on object → NO_COVERAGE

818

1.1
Location : handleStartElement
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

819

1.1
Location : handleStartElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleStartElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleStartElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleStartElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : handleStartElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportUnboundPrefix → NO_COVERAGE

824

1.1
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handleStartElement
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

836

1.1
Location : collectValue
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCollector mutated with null check on object → NO_COVERAGE

837

1.1
Location : collectValue
Killed by : none
M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldATTR_CHARS mutated with null check on object → NO_COVERAGE

845

1.1
Location : collectValue
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

846

1.1
Location : collectValue
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

847

1.1
Location : collectValue
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

848

1.1
Location : collectValue
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

850

1.1
Location : collectValue
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

851

1.1
Location : collectValue
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCollector mutated with null check on object → NO_COVERAGE

853

1.1
Location : collectValue
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

855

1.1
Location : collectValue
Killed by : none
Replaced operate with second operand → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
Replaced operate with second operand → NO_COVERAGE

856

1.1
Location : collectValue
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

7.7
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

860

1.1
Location : collectValue
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

7.7
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

861

1.1
Location : collectValue
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

862

1.1
Location : collectValue
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : collectValue
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

863

1.1
Location : collectValue
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

864

1.1
Location : collectValue
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

867

1.1
Location : collectValue
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : collectValue
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

868

1.1
Location : collectValue
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

871

1.1
Location : collectValue
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

873

1.1
Location : collectValue
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

876

1.1
Location : collectValue
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : collectValue
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

881

1.1
Location : collectValue
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

882

1.1
Location : collectValue
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

884

1.1
Location : collectValue
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : collectValue
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : collectValue
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

10.10
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

11.11
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

13.13
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

885

1.1
Location : collectValue
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : collectValue
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : collectValue
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

889

1.1
Location : collectValue
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

893

1.1
Location : collectValue
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

896

1.1
Location : collectValue
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE

899

1.1
Location : collectValue
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

900

1.1
Location : collectValue
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

901

1.1
Location : collectValue
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportUnexpandedEntityInAttr → NO_COVERAGE

904

1.1
Location : collectValue
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
Replaced Shift Right with Shift Left → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : collectValue
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : collectValue
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

9.9
Location : collectValue
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

10.10
Location : collectValue
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

11.11
Location : collectValue
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

12.12
Location : collectValue
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

905

1.1
Location : collectValue
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

906

1.1
Location : collectValue
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

8.8
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

9.9
Location : collectValue
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

10.10
Location : collectValue
Killed by : none
Replaced Shift Right with Shift Left → NO_COVERAGE

11.11
Location : collectValue
Killed by : none
Replaced bitwise OR with AND → NO_COVERAGE

12.12
Location : collectValue
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : collectValue
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

14.14
Location : collectValue
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

15.15
Location : collectValue
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

16.16
Location : collectValue
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

17.17
Location : collectValue
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

907

1.1
Location : collectValue
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE

8.8
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE

9.9
Location : collectValue
Killed by : none
Replaced bitwise AND with OR → NO_COVERAGE

10.10
Location : collectValue
Killed by : none
Replaced bitwise OR with AND → NO_COVERAGE

11.11
Location : collectValue
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

12.12
Location : collectValue
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

908

1.1
Location : collectValue
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

909

1.1
Location : collectValue
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCollector mutated with null check on object → NO_COVERAGE

916

1.1
Location : collectValue
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

923

1.1
Location : collectValue
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : collectValue
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

924

1.1
Location : collectValue
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : collectValue
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

12.12
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

927

1.1
Location : collectValue
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

929

1.1
Location : collectValue
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

930

1.1
Location : collectValue
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_attrCollector mutated with null check on object → NO_COVERAGE

933

1.1
Location : collectValue
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : collectValue
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : collectValue
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : collectValue
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

938

1.1
Location : collectValue
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : collectValue
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : collectValue
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : collectValue
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : collectValue
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

941

1.1
Location : collectValue
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

951

1.1
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

952

1.1
Location : handleNsDeclaration
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → SURVIVED

955

1.1
Location : handleNsDeclaration
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

3.3
Location : handleNsDeclaration
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handleNsDeclaration
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

956

1.1
Location : handleNsDeclaration
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

958

1.1
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Replaced operate with second operand → KILLED

6.6
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleNsDeclaration
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handleNsDeclaration
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handleNsDeclaration
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

959

1.1
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

2.2
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPEQ → KILLED

3.3
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGE → KILLED

4.4
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

5.5
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

6.6
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPLT → KILLED

962

1.1
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 38 with 1 → KILLED

5.5
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

6.6
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPLT → KILLED

963

1.1
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : handleNsDeclaration
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

964

1.1
Location : handleNsDeclaration
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

3.3
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

4.4
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

965

1.1
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleNsDeclaration
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : handleNsDeclaration
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportUnexpandedEntityInAttr → NO_COVERAGE

968

1.1
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE

5.5
Location : handleNsDeclaration
Killed by : none
Replaced Shift Right with Shift Left → NO_COVERAGE

6.6
Location : handleNsDeclaration
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : handleNsDeclaration
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

9.9
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

10.10
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

11.11
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

12.12
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

969

1.1
Location : handleNsDeclaration
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleNsDeclaration
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

970

1.1
Location : handleNsDeclaration
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE

972

1.1
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE

5.5
Location : handleNsDeclaration
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleNsDeclaration
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

973

1.1
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

8.8
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

9.9
Location : handleNsDeclaration
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

10.10
Location : handleNsDeclaration
Killed by : none
Replaced Shift Right with Shift Left → NO_COVERAGE

11.11
Location : handleNsDeclaration
Killed by : none
Replaced bitwise OR with AND → NO_COVERAGE

12.12
Location : handleNsDeclaration
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : handleNsDeclaration
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

14.14
Location : handleNsDeclaration
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

15.15
Location : handleNsDeclaration
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

16.16
Location : handleNsDeclaration
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

17.17
Location : handleNsDeclaration
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

974

1.1
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE

8.8
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE

9.9
Location : handleNsDeclaration
Killed by : none
Replaced bitwise AND with OR → NO_COVERAGE

10.10
Location : handleNsDeclaration
Killed by : none
Replaced bitwise OR with AND → NO_COVERAGE

11.11
Location : handleNsDeclaration
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

12.12
Location : handleNsDeclaration
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

977

1.1
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED

5.5
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

6.6
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPLT → KILLED

978

1.1
Location : handleNsDeclaration
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE

980

1.1
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED

5.5
Location : handleNsDeclaration
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

7.7
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPEQ → KILLED

9.9
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPLT → KILLED

12.12
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

981

1.1
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : handleNsDeclaration
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleNsDeclaration
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

982

1.1
Location : handleNsDeclaration
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

983

1.1
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE

5.5
Location : handleNsDeclaration
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleNsDeclaration
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

984

1.1
Location : handleNsDeclaration
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleNsDeclaration
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleNsDeclaration
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : handleNsDeclaration
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

985

1.1
Location : handleNsDeclaration
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

987

1.1
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : handleNsDeclaration
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleNsDeclaration
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleNsDeclaration
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handleNsDeclaration
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

10.10
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

11.11
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

13.13
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

988

1.1
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleNsDeclaration
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleNsDeclaration
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleNsDeclaration
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : handleNsDeclaration
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

990

1.1
Location : handleNsDeclaration
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

991

1.1
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : handleNsDeclaration
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

992

1.1
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleNsDeclaration
Killed by : none
Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE

5.5
Location : handleNsDeclaration
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleNsDeclaration
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

8.8
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

993

1.1
Location : handleNsDeclaration
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwInvalidSpace → NO_COVERAGE

997

1.1
Location : handleNsDeclaration
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handleNsDeclaration
Killed by : none
negated conditional → SURVIVED

3.3
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

4.4
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

5.5
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

6.6
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

7.7
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

998

1.1
Location : handleNsDeclaration
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE

1000

1.1
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Changed increment from 1 to -1 → KILLED

2.2
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED

3.3
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

4.4
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
UOI Mutator: Removed unary increment of local variable → KILLED

5.5
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
UOI Mutator: Reversed increment of local variable → KILLED

1007

1.1
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

2.2
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IFEQ → KILLED

3.3
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IFGE → SURVIVED

4.4
Location : handleNsDeclaration
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IFLE → KILLED

6.6
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IFLT → KILLED

1008

1.1
Location : handleNsDeclaration
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::bindNs → NO_COVERAGE

1010

1.1
Location : handleNsDeclaration
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_config mutated with null check on object → SURVIVED

1011

1.1
Location : handleNsDeclaration
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
removed call to com/fasterxml/aalto/in/ReaderScanner::bindNs → KILLED

1018

1.1
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleEndElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_depth mutated with null check on object → SURVIVED

8.8
Location : handleEndElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_depth mutated with null check on object → SURVIVED

1020

1.1
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED

5.5
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handleEndElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → SURVIVED

1022

1.1
Location : handleEndElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currElem mutated with null check on object → SURVIVED

2.2
Location : handleEndElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenName mutated with null check on object → SURVIVED

1023

1.1
Location : handleEndElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenName mutated with null check on object → SURVIVED

1025

1.1
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

1028

1.1
Location : handleEndElement
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary → KILLED

2.2
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : handleEndElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handleEndElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handleEndElement
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1029

1.1
Location : handleEndElement
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → KILLED

1031

1.1
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleEndElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handleEndElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handleEndElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1032

1.1
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

2.2
Location : handleEndElement
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

3.3
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

4.4
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

5.5
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

6.6
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

1033

1.1
Location : handleEndElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportUnexpectedEndTag → NO_COVERAGE

1035

1.1
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary → KILLED

2.2
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Changed increment from 1 to -1 → KILLED

3.3
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

4.4
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

5.5
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

6.6
Location : handleEndElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

7.7
Location : handleEndElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : handleEndElement
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

9.9
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED

10.10
Location : handleEndElement
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

11.11
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
UOI Mutator: Removed unary increment of local variable → KILLED

12.12
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
UOI Mutator: Reversed increment of local variable → KILLED

1038

1.1
Location : handleEndElement
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary → KILLED

2.2
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : handleEndElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handleEndElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handleEndElement
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1039

1.1
Location : handleEndElement
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → KILLED

1041

1.1
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleEndElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handleEndElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handleEndElement
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1042

1.1
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED

5.5
Location : handleEndElement
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

7.7
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

9.9
Location : handleEndElement
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : handleEndElement
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1043

1.1
Location : handleEndElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEndElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEndElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEndElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : handleEndElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1044

1.1
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED

5.5
Location : handleEndElement
Killed by : none
negated conditional → SURVIVED

6.6
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleEndElement
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

8.8
Location : handleEndElement
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

9.9
Location : handleEndElement
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleEndElement
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

11.11
Location : handleEndElement
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1045

1.1
Location : handleEndElement
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEndElement
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEndElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEndElement
Killed by : none
Bug fixed: CRCR replace with One, Substituted 58 with 1 → NO_COVERAGE

5.5
Location : handleEndElement
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleEndElement
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : handleEndElement
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : handleEndElement
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleEndElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleEndElement
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleEndElement
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

12.12
Location : handleEndElement
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

13.13
Location : handleEndElement
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

14.14
Location : handleEndElement
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

15.15
Location : handleEndElement
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

16.16
Location : handleEndElement
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

17.17
Location : handleEndElement
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

1046

1.1
Location : handleEndElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportUnexpectedEndTag → NO_COVERAGE

1049

1.1
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEndElement
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR

4.4
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED

5.5
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleEndElement
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

8.8
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

10.10
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

1050

1.1
Location : handleEndElement
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE

1052

1.1
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED

5.5
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handleEndElement
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

1058

1.1
Location : handleEntityInText
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handleEntityInText
Killed by : none
negated conditional → SURVIVED

3.3
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1059

1.1
Location : handleEntityInText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1061

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Replaced operate with second operand → KILLED

6.6
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1062

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 35 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : none
negated conditional → SURVIVED

6.6
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

1063

1.1
Location : handleEntityInText
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1066

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 97 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : none
negated conditional → SURVIVED

6.6
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

1067

1.1
Location : handleEntityInText
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handleEntityInText
Killed by : none
negated conditional → SURVIVED

3.3
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1068

1.1
Location : handleEntityInText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1070

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Replaced operate with second operand → KILLED

6.6
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1071

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 109 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : none
negated conditional → SURVIVED

6.6
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

1072

1.1
Location : handleEntityInText
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handleEntityInText
Killed by : none
negated conditional → SURVIVED

3.3
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1073

1.1
Location : handleEntityInText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1075

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Replaced operate with second operand → KILLED

6.6
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1076

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 112 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : none
negated conditional → SURVIVED

6.6
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

1077

1.1
Location : handleEntityInText
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handleEntityInText
Killed by : none
negated conditional → SURVIVED

3.3
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1078

1.1
Location : handleEntityInText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1080

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Replaced operate with second operand → KILLED

6.6
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1081

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : none
negated conditional → SURVIVED

6.6
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

1082

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 38 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

1088

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 112 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1089

1.1
Location : handleEntityInText
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1090

1.1
Location : handleEntityInText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1092

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1093

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 111 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1094

1.1
Location : handleEntityInText
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1095

1.1
Location : handleEntityInText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1097

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1098

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 115 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1099

1.1
Location : handleEntityInText
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1100

1.1
Location : handleEntityInText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1102

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1103

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1104

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 39 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1116

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 108 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : none
negated conditional → SURVIVED

6.6
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

1117

1.1
Location : handleEntityInText
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1118

1.1
Location : handleEntityInText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1120

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1121

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 116 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1122

1.1
Location : handleEntityInText
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1123

1.1
Location : handleEntityInText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1125

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1126

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1127

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 60 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1133

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 103 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : none
negated conditional → SURVIVED

6.6
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

1134

1.1
Location : handleEntityInText
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1135

1.1
Location : handleEntityInText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1137

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1138

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 116 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1139

1.1
Location : handleEntityInText
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1140

1.1
Location : handleEntityInText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1142

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1143

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1144

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1150

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 113 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : none
negated conditional → SURVIVED

6.6
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

1151

1.1
Location : handleEntityInText
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1152

1.1
Location : handleEntityInText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1154

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1155

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 117 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1156

1.1
Location : handleEntityInText
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1157

1.1
Location : handleEntityInText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1159

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1160

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 111 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1161

1.1
Location : handleEntityInText
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1162

1.1
Location : handleEntityInText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1164

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1165

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 116 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1166

1.1
Location : handleEntityInText
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1167

1.1
Location : handleEntityInText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1169

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1170

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1171

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 34 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1187

1.1
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldNAME_CHARS mutated with null check on object → SURVIVED

1192

1.1
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → SURVIVED

1193

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

1194

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
changed conditional boundary → KILLED

2.2
Location : handleEntityInText
Killed by : none
Changed increment from 1 to -1 → SURVIVED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
negated conditional → KILLED

4.4
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

5.5
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
changed conditional boundary to IF_ICMPGT → KILLED

6.6
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
changed conditional boundary to IF_ICMPGT → KILLED

7.7
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
changed conditional boundary to IF_ICMPLT → KILLED

8.8
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
changed conditional boundary to IF_ICMPNE → KILLED

9.9
Location : handleEntityInText
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → SURVIVED

10.10
Location : handleEntityInText
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → SURVIVED

11.11
Location : handleEntityInText
Killed by : none
UOI Mutator: Removed unary increment of local variable → SURVIVED

12.12
Location : handleEntityInText
Killed by : none
UOI Mutator: Reversed increment of local variable → SURVIVED

1198

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : none
negated conditional → SURVIVED

6.6
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1202

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : handleEntityInText
Killed by : none
negated conditional → SURVIVED

7.7
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1207

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

12.12
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

14.14
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

15.15
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

16.16
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

17.17
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

1210

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

1213

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1217

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

12.12
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1220

1.1
Location : handleEntityInText
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1221

1.1
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE

1223

1.1
Location : handleEntityInText
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

1224

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1225

1.1
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

1227

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1229

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1231

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1234

1.1
Location : handleEntityInText
Killed by : none
negated conditional → SURVIVED

2.2
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFEQ → SURVIVED

3.3
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFGE → SURVIVED

4.4
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFLE → SURVIVED

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFLT → SURVIVED

1235

1.1
Location : handleEntityInText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidNameChar → NO_COVERAGE

1237

1.1
Location : handleEntityInText
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handleEntityInText
Killed by : none
negated conditional → SURVIVED

3.3
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

4.4
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1238

1.1
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE

1240

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Changed increment from 1 to -1 → KILLED

2.2
Location : handleEntityInText
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → SURVIVED

3.3
Location : handleEntityInText
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → SURVIVED

4.4
Location : handleEntityInText
Killed by : none
UOI Mutator: Removed unary increment of local variable → SURVIVED

5.5
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
UOI Mutator: Reversed increment of local variable → KILLED

1241

1.1
Location : handleEntityInText
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : handleEntityInText
Killed by : none
negated conditional → SURVIVED

3.3
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

7.7
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

8.8
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1242

1.1
Location : handleEntityInText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1244

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Replaced operate with second operand → KILLED

6.6
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1248

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

1250

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenName mutated with null check on object → SURVIVED

1255

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
negated conditional → KILLED

2.2
Location : handleEntityInText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_config mutated with null check on object → SURVIVED

3.3
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
changed conditional boundary to IFGE → KILLED

4.4
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
changed conditional boundary to IFGT → KILLED

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFLE → SURVIVED

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFLT → SURVIVED

7.7
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
changed conditional boundary to IFNE → KILLED

1256

1.1
Location : handleEntityInText
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → KILLED

1258

1.1
Location : handleEntityInText
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

1259

1.1
Location : handleEntityInText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE

1261

1.1
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : handleEntityInText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : handleEntityInText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : handleEntityInText
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1267

1.1
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → SURVIVED

1268

1.1
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

1269

1.1
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED

1270

1.1
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

1279

1.1
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1280

1.1
Location : finishComment
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

4.4
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

5.5
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

6.6
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

7.7
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1281

1.1
Location : finishComment
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1282

1.1
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1284

1.1
Location : finishComment
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

4.4
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

5.5
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

6.6
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

7.7
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1285

1.1
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

1286

1.1
Location : finishComment
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishComment
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishComment
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishComment
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishComment
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1288

1.1
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

1290

1.1
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Replaced operate with second operand → KILLED

2.2
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Replaced operate with second operand → KILLED

1291

1.1
Location : finishComment
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishComment
Killed by : none
negated conditional → SURVIVED

3.3
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

4.4
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

5.5
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

6.6
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

7.7
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1295

1.1
Location : finishComment
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishComment
Killed by : none
negated conditional → TIMED_OUT

3.3
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

4.4
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

5.5
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

6.6
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPLT → TIMED_OUT

7.7
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPNE → TIMED_OUT

1296

1.1
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Changed increment from 1 to -1 → KILLED

2.2
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED

3.3
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

4.4
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
UOI Mutator: Removed unary increment of local variable → KILLED

5.5
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
UOI Mutator: Reversed increment of local variable → KILLED

1297

1.1
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED

5.5
Location : finishComment
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
negated conditional → KILLED

7.7
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

9.9
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

1298

1.1
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
negated conditional → KILLED

2.2
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IFGE → KILLED

3.3
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IFGT → KILLED

4.4
Location : finishComment
Killed by : none
changed conditional boundary to IFLE → SURVIVED

5.5
Location : finishComment
Killed by : none
changed conditional boundary to IFLT → SURVIVED

6.6
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IFNE → KILLED

1299

1.1
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1302

1.1
Location : finishComment
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishComment
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishComment
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishComment
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : finishComment
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishComment
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishComment
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1303

1.1
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1306

1.1
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Changed increment from 1 to -1 → KILLED

2.2
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED

3.3
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

4.4
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
UOI Mutator: Removed unary increment of local variable → KILLED

5.5
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
UOI Mutator: Reversed increment of local variable → KILLED

1308

1.1
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1311

1.1
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED

5.5
Location : finishComment
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
negated conditional → KILLED

7.7
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

9.9
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

1317

1.1
Location : finishComment
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishComment
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1318

1.1
Location : finishComment
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1320

1.1
Location : finishComment
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishComment
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishComment
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishComment
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : finishComment
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : finishComment
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1321

1.1
Location : finishComment
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishComment
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishComment
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishComment
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishComment
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : finishComment
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1323

1.1
Location : finishComment
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

1325

1.1
Location : finishComment
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishComment
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishComment
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishComment
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : finishComment
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1328

1.1
Location : finishComment
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

1331

1.1
Location : finishComment
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1332

1.1
Location : finishComment
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1334

1.1
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED

5.5
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

10.10
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

11.11
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

12.12
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

13.13
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

1335

1.1
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

8.8
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1336

1.1
Location : finishComment
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1337

1.1
Location : finishComment
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1339

1.1
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

4.4
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

6.6
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

7.7
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

8.8
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Replaced operate with second operand → KILLED

9.9
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED

10.10
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
negated conditional → KILLED

11.11
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

12.12
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

13.13
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

14.14
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

15.15
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

16.16
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

17.17
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

18.18
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

19.19
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

20.20
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

1340

1.1
Location : finishComment
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportDoubleHyphenInComments → NO_COVERAGE

1348

1.1
Location : finishComment
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishComment
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishComment
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishComment
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : finishComment
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishComment
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishComment
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1349

1.1
Location : finishComment
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishComment
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishComment
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishComment
Killed by : none
Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE

5.5
Location : finishComment
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishComment
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishComment
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

12.12
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1352

1.1
Location : finishComment
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishComment
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishComment
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishComment
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishComment
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

1353

1.1
Location : finishComment
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishComment
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1354

1.1
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

1355

1.1
Location : finishComment
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishComment
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishComment
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishComment
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishComment
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1358

1.1
Location : finishComment
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishComment
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishComment
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishComment
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE

5.5
Location : finishComment
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishComment
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishComment
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishComment
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1363

1.1
Location : finishComment
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishComment
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishComment
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishComment
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishComment
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

1365

1.1
Location : finishComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED

2.2
Location : finishComment
Killed by : sax.TestSaxReader.testComments(sax.TestSaxReader)
removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED

1371

1.1
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → SURVIVED

1372

1.1
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

1373

1.1
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED

1374

1.1
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

1383

1.1
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1384

1.1
Location : finishPI
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

4.4
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

5.5
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

6.6
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

7.7
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1385

1.1
Location : finishPI
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1386

1.1
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1388

1.1
Location : finishPI
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

4.4
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

5.5
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

6.6
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

7.7
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1389

1.1
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

1390

1.1
Location : finishPI
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishPI
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishPI
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishPI
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1392

1.1
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

1394

1.1
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Replaced operate with second operand → KILLED

2.2
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Replaced operate with second operand → KILLED

1395

1.1
Location : finishPI
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishPI
Killed by : none
negated conditional → SURVIVED

3.3
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

4.4
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

5.5
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

6.6
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

7.7
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1399

1.1
Location : finishPI
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishPI
Killed by : none
negated conditional → TIMED_OUT

3.3
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

4.4
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

5.5
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

6.6
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPLT → TIMED_OUT

7.7
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPNE → TIMED_OUT

1400

1.1
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Changed increment from 1 to -1 → KILLED

2.2
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED

3.3
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

4.4
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
UOI Mutator: Removed unary increment of local variable → KILLED

5.5
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
UOI Mutator: Reversed increment of local variable → KILLED

1401

1.1
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED

5.5
Location : finishPI
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

7.7
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

9.9
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

1402

1.1
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

2.2
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IFGE → KILLED

3.3
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IFGT → KILLED

4.4
Location : finishPI
Killed by : none
changed conditional boundary to IFLE → SURVIVED

5.5
Location : finishPI
Killed by : none
changed conditional boundary to IFLT → SURVIVED

6.6
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IFNE → KILLED

1403

1.1
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1406

1.1
Location : finishPI
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishPI
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishPI
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : finishPI
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishPI
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishPI
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1407

1.1
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1410

1.1
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Changed increment from 1 to -1 → KILLED

2.2
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED

3.3
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

4.4
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
UOI Mutator: Removed unary increment of local variable → KILLED

5.5
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
UOI Mutator: Reversed increment of local variable → KILLED

1412

1.1
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1415

1.1
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED

5.5
Location : finishPI
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

7.7
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

9.9
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

1419

1.1
Location : finishPI
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishPI
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1420

1.1
Location : finishPI
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1422

1.1
Location : finishPI
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishPI
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishPI
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : finishPI
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : finishPI
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1423

1.1
Location : finishPI
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishPI
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishPI
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishPI
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : finishPI
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1425

1.1
Location : finishPI
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

1426

1.1
Location : finishPI
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishPI
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishPI
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : finishPI
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1430

1.1
Location : finishPI
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

1433

1.1
Location : finishPI
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1434

1.1
Location : finishPI
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1436

1.1
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR

4.4
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED

5.5
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

10.10
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

11.11
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

12.12
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

13.13
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

1437

1.1
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

8.8
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1444

1.1
Location : finishPI
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishPI
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishPI
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : finishPI
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishPI
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishPI
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1445

1.1
Location : finishPI
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishPI
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishPI
Killed by : none
Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE

5.5
Location : finishPI
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishPI
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishPI
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

12.12
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1448

1.1
Location : finishPI
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishPI
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishPI
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishPI
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishPI
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

1449

1.1
Location : finishPI
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishPI
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1450

1.1
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

1451

1.1
Location : finishPI
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishPI
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishPI
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishPI
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1454

1.1
Location : finishPI
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishPI
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishPI
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE

5.5
Location : finishPI
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishPI
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishPI
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishPI
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1459

1.1
Location : finishPI
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishPI
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishPI
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishPI
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishPI
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

1461

1.1
Location : finishPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED

2.2
Location : finishPI
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED

1467

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
negated conditional → KILLED

2.2
Location : finishDTD
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED

3.3
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IFGE → KILLED

4.4
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IFGT → KILLED

5.5
Location : finishDTD
Killed by : none
changed conditional boundary to IFLE → SURVIVED

6.6
Location : finishDTD
Killed by : none
changed conditional boundary to IFLT → SURVIVED

7.7
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IFNE → KILLED

1469

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

1471

1.1
Location : finishDTD
Killed by : none
M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldDTD_CHARS mutated with null check on object → SURVIVED

1472

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

1473

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

1484

1.1
Location : finishDTD
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1485

1.1
Location : finishDTD
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
negated conditional → KILLED

3.3
Location : finishDTD
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

4.4
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPEQ → KILLED

5.5
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPGE → KILLED

6.6
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPGT → KILLED

7.7
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1486

1.1
Location : finishDTD
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1487

1.1
Location : finishDTD
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1489

1.1
Location : finishDTD
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

1490

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
negated conditional → KILLED

1491

1.1
Location : finishDTD
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
negated conditional → KILLED

3.3
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPEQ → KILLED

4.4
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPGE → KILLED

5.5
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPGT → KILLED

6.6
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPGT → KILLED

7.7
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1492

1.1
Location : finishDTD
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

1493

1.1
Location : finishDTD
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishDTD
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishDTD
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1496

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Replaced operate with second operand → KILLED

2.2
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Replaced operate with second operand → KILLED

1497

1.1
Location : finishDTD
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishDTD
Killed by : none
negated conditional → SURVIVED

3.3
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

4.4
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

5.5
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

6.6
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

7.7
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1502

1.1
Location : finishDTD
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishDTD
Killed by : none
negated conditional → TIMED_OUT

3.3
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

4.4
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

5.5
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

6.6
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPLT → TIMED_OUT

7.7
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPNE → TIMED_OUT

1503

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Changed increment from 1 to -1 → KILLED

2.2
Location : finishDTD
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

3.3
Location : finishDTD
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → TIMED_OUT

4.4
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

5.5
Location : finishDTD
Killed by : none
UOI Mutator: Removed unary increment of local variable → TIMED_OUT

6.6
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
UOI Mutator: Reversed increment of local variable → KILLED

1504

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED

5.5
Location : finishDTD
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
negated conditional → KILLED

7.7
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

9.9
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPNE → KILLED

1505

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
negated conditional → KILLED

2.2
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IFGE → KILLED

3.3
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IFGT → KILLED

4.4
Location : finishDTD
Killed by : none
changed conditional boundary to IFLE → SURVIVED

5.5
Location : finishDTD
Killed by : none
changed conditional boundary to IFLT → SURVIVED

6.6
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IFNE → KILLED

1506

1.1
Location : finishDTD
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1509

1.1
Location : finishDTD
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishDTD
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : finishDTD
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishDTD
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishDTD
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1510

1.1
Location : finishDTD
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1513

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
negated conditional → KILLED

1514

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Changed increment from 1 to -1 → KILLED

2.2
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED

3.3
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

4.4
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
UOI Mutator: Removed unary increment of local variable → KILLED

5.5
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
UOI Mutator: Reversed increment of local variable → KILLED

1517

1.1
Location : finishDTD
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1520

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED

5.5
Location : finishDTD
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
negated conditional → KILLED

7.7
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

9.9
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPNE → KILLED

1526

1.1
Location : finishDTD
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishDTD
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishDTD
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : finishDTD
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1527

1.1
Location : finishDTD
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1529

1.1
Location : finishDTD
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishDTD
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : finishDTD
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : finishDTD
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishDTD
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : finishDTD
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

10.10
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

11.11
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

13.13
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1530

1.1
Location : finishDTD
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishDTD
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishDTD
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : finishDTD
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishDTD
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : finishDTD
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1532

1.1
Location : finishDTD
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

1534

1.1
Location : finishDTD
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishDTD
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : finishDTD
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1537

1.1
Location : finishDTD
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

1541

1.1
Location : finishDTD
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : finishDTD
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

3.3
Location : finishDTD
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

4.4
Location : finishDTD
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : finishDTD
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : finishDTD
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

1544

1.1
Location : finishDTD
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

3.3
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

4.4
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

5.5
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1545

1.1
Location : finishDTD
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishDTD
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishDTD
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1551

1.1
Location : finishDTD
Killed by : none
negated conditional → SURVIVED

2.2
Location : finishDTD
Killed by : none
changed conditional boundary to IFEQ → SURVIVED

3.3
Location : finishDTD
Killed by : none
changed conditional boundary to IFGE → SURVIVED

4.4
Location : finishDTD
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : finishDTD
Killed by : none
changed conditional boundary to IFLE → SURVIVED

6.6
Location : finishDTD
Killed by : none
changed conditional boundary to IFLT → SURVIVED

1552

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR

4.4
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

1556

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
negated conditional → KILLED

2.2
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IFEQ → KILLED

3.3
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IFGE → KILLED

4.4
Location : finishDTD
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IFLE → KILLED

6.6
Location : finishDTD
Killed by : none
changed conditional boundary to IFLT → SURVIVED

1557

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

1561

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
negated conditional → KILLED

2.2
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
negated conditional → KILLED

3.3
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IFEQ → KILLED

4.4
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IFEQ → KILLED

5.5
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IFGE → KILLED

6.6
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IFGE → KILLED

7.7
Location : finishDTD
Killed by : none
changed conditional boundary to IFGT → SURVIVED

8.8
Location : finishDTD
Killed by : none
changed conditional boundary to IFGT → SURVIVED

9.9
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IFLE → KILLED

10.10
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IFLE → KILLED

11.11
Location : finishDTD
Killed by : none
changed conditional boundary to IFLT → SURVIVED

12.12
Location : finishDTD
Killed by : none
changed conditional boundary to IFLT → SURVIVED

1568

1.1
Location : finishDTD
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishDTD
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : finishDTD
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishDTD
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishDTD
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1569

1.1
Location : finishDTD
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishDTD
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE

5.5
Location : finishDTD
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishDTD
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishDTD
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

12.12
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1572

1.1
Location : finishDTD
Killed by : none
negated conditional → NO_COVERAGE

1573

1.1
Location : finishDTD
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishDTD
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishDTD
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishDTD
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishDTD
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

1574

1.1
Location : finishDTD
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishDTD
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1575

1.1
Location : finishDTD
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

1576

1.1
Location : finishDTD
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishDTD
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishDTD
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1580

1.1
Location : finishDTD
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishDTD
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE

5.5
Location : finishDTD
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishDTD
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishDTD
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1585

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
negated conditional → KILLED

1586

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Changed increment from 1 to -1 → KILLED

2.2
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED

3.3
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

4.4
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
UOI Mutator: Removed unary increment of local variable → KILLED

5.5
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
UOI Mutator: Reversed increment of local variable → KILLED

1589

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
negated conditional → KILLED

1590

1.1
Location : finishDTD
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED

2.2
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED

1594

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

1595

1.1
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishDTD
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR

4.4
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED

5.5
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
negated conditional → KILLED

6.6
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : finishDTD
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

8.8
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPGT → KILLED

10.10
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : finishDTD
Killed by : stream.TestDTDSkimming.testSimple(stream.TestDTDSkimming)
changed conditional boundary to IF_ICMPNE → KILLED

1596

1.1
Location : finishDTD
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE

1603

1.1
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → SURVIVED

1604

1.1
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

1605

1.1
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED

1606

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

1617

1.1
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1618

1.1
Location : finishCData
Killed by : none
changed conditional boundary → TIMED_OUT

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

3.3
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

4.4
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPEQ → KILLED

5.5
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGE → KILLED

6.6
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

7.7
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1619

1.1
Location : finishCData
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → TIMED_OUT

1620

1.1
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1622

1.1
Location : finishCData
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

3.3
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPEQ → KILLED

4.4
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGE → KILLED

5.5
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

6.6
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

7.7
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1623

1.1
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

1624

1.1
Location : finishCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1626

1.1
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

1628

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Replaced operate with second operand → KILLED

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Replaced operate with second operand → KILLED

1629

1.1
Location : finishCData
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

3.3
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPEQ → KILLED

4.4
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

5.5
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

6.6
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPLT → KILLED

7.7
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1633

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary → KILLED

2.2
Location : finishCData
Killed by : none
negated conditional → TIMED_OUT

3.3
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

4.4
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

5.5
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

6.6
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPLT → TIMED_OUT

7.7
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPNE → TIMED_OUT

1634

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Changed increment from 1 to -1 → KILLED

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED

3.3
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

4.4
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
UOI Mutator: Removed unary increment of local variable → KILLED

5.5
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
UOI Mutator: Reversed increment of local variable → KILLED

1635

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED

5.5
Location : finishCData
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

7.7
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

9.9
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPNE → KILLED

1636

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IFGE → KILLED

3.3
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IFGT → KILLED

4.4
Location : finishCData
Killed by : none
changed conditional boundary to IFLE → SURVIVED

5.5
Location : finishCData
Killed by : none
changed conditional boundary to IFLT → SURVIVED

6.6
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IFNE → KILLED

1637

1.1
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1640

1.1
Location : finishCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : finishCData
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishCData
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1641

1.1
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1644

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Changed increment from 1 to -1 → KILLED

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED

3.3
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

4.4
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
UOI Mutator: Removed unary increment of local variable → KILLED

5.5
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
UOI Mutator: Reversed increment of local variable → KILLED

1646

1.1
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1649

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED

5.5
Location : finishCData
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

7.7
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

9.9
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPNE → KILLED

1655

1.1
Location : finishCData
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCData
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1656

1.1
Location : finishCData
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1658

1.1
Location : finishCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : finishCData
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : finishCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1659

1.1
Location : finishCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishCData
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : finishCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1661

1.1
Location : finishCData
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

1663

1.1
Location : finishCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : finishCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1666

1.1
Location : finishCData
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

1674

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

1678

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary → KILLED

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

3.3
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1679

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → KILLED

1681

1.1
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

2.2
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1682

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED

5.5
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

6.6
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

8.8
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

10.10
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPNE → KILLED

1685

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Replaced operate with second operand → KILLED

6.6
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

8.8
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1686

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Changed increment from 1 to -1 → KILLED

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED

3.3
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

4.4
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
UOI Mutator: Removed unary increment of local variable → KILLED

5.5
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
UOI Mutator: Reversed increment of local variable → KILLED

1690

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

4.4
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

5.5
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

6.6
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

7.7
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

8.8
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

9.9
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

10.10
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

11.11
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

12.12
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR

13.13
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED

14.14
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

15.15
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

16.16
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

17.17
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary → KILLED

18.18
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

19.19
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

20.20
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

21.21
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

22.22
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

23.23
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

24.24
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPEQ → KILLED

25.25
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPEQ → KILLED

26.26
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGE → KILLED

27.27
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGE → KILLED

28.28
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

29.29
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

30.30
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

31.31
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

32.32
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

33.33
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1691

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IFGE → KILLED

3.3
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IFGT → KILLED

4.4
Location : finishCData
Killed by : none
changed conditional boundary to IFLE → SURVIVED

5.5
Location : finishCData
Killed by : none
changed conditional boundary to IFLT → SURVIVED

6.6
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IFNE → KILLED

1692

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Changed increment from -1 to 1 → KILLED

2.2
Location : finishCData
Killed by : none
UOI Mutator: Added unary decrement -1 -> -2 to local variable → SURVIVED

3.3
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
UOI Mutator: Added unary increment -1 -> 0 to local variable → KILLED

4.4
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
UOI Mutator: Removed unary increment of local variable → KILLED

5.5
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
UOI Mutator: Reversed increment of local variable → KILLED

1695

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary → KILLED

2.2
Location : finishCData
Killed by : none
Changed increment from -1 to 1 → SURVIVED

3.3
Location : finishCData
Killed by : none
negated conditional → MEMORY_ERROR

4.4
Location : finishCData
Killed by : none
changed conditional boundary to IFEQ → SURVIVED

5.5
Location : finishCData
Killed by : none
changed conditional boundary to IFGE → SURVIVED

6.6
Location : finishCData
Killed by : none
changed conditional boundary to IFGT → MEMORY_ERROR

7.7
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IFLT → KILLED

8.8
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IFNE → KILLED

9.9
Location : finishCData
Killed by : none
UOI Mutator: Added unary decrement -1 -> -2 to local variable → SURVIVED

10.10
Location : finishCData
Killed by : none
UOI Mutator: Added unary increment -1 -> 0 to local variable → SURVIVED

11.11
Location : finishCData
Killed by : none
UOI Mutator: Removed unary increment of local variable → SURVIVED

12.12
Location : finishCData
Killed by : none
UOI Mutator: Reversed increment of local variable → SURVIVED

1696

1.1
Location : finishCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE

5.5
Location : finishCData
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

6.6
Location : finishCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCData
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

8.8
Location : finishCData
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

9.9
Location : finishCData
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

10.10
Location : finishCData
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

1697

1.1
Location : finishCData
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCData
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1698

1.1
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

1699

1.1
Location : finishCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1702

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IFGE → KILLED

3.3
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IFGT → KILLED

4.4
Location : finishCData
Killed by : none
changed conditional boundary to IFLE → SURVIVED

5.5
Location : finishCData
Killed by : none
changed conditional boundary to IFLT → SURVIVED

6.6
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IFNE → KILLED

1703

1.1
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Replaced operate with second operand → KILLED

6.6
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

8.8
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1710

1.1
Location : finishCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : finishCData
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishCData
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1711

1.1
Location : finishCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE

5.5
Location : finishCData
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishCData
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

12.12
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1714

1.1
Location : finishCData
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishCData
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishCData
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishCData
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishCData
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

1715

1.1
Location : finishCData
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCData
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1716

1.1
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

1717

1.1
Location : finishCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1720

1.1
Location : finishCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE

5.5
Location : finishCData
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishCData
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1725

1.1
Location : finishCData
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishCData
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishCData
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishCData
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishCData
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

1728

1.1
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED

2.2
Location : finishCData
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED

1732

1.1
Location : finishCData
Killed by : none
negated conditional → SURVIVED

2.2
Location : finishCData
Killed by : none
negated conditional → SURVIVED

3.3
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_cfgCoalescing mutated with null check on object → SURVIVED

4.4
Location : finishCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_entityPending mutated with null check on object → SURVIVED

5.5
Location : finishCData
Killed by : none
changed conditional boundary to IFEQ → SURVIVED

6.6
Location : finishCData
Killed by : none
changed conditional boundary to IFGE → SURVIVED

7.7
Location : finishCData
Killed by : none
changed conditional boundary to IFGE → SURVIVED

8.8
Location : finishCData
Killed by : none
changed conditional boundary to IFGT → SURVIVED

9.9
Location : finishCData
Killed by : none
changed conditional boundary to IFGT → SURVIVED

10.10
Location : finishCData
Killed by : none
changed conditional boundary to IFLE → SURVIVED

11.11
Location : finishCData
Killed by : none
changed conditional boundary to IFLE → SURVIVED

12.12
Location : finishCData
Killed by : none
changed conditional boundary to IFLT → SURVIVED

13.13
Location : finishCData
Killed by : none
changed conditional boundary to IFLT → SURVIVED

14.14
Location : finishCData
Killed by : none
changed conditional boundary to IFNE → SURVIVED

1733

1.1
Location : finishCData
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::finishCoalescedText → NO_COVERAGE

1745

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and fieldmTmpChar mutated with null check on object → SURVIVED

1746

1.1
Location : finishCharacters
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

3.3
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IFEQ → KILLED

4.4
Location : finishCharacters
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IFLE → KILLED

6.6
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IFLT → KILLED

7.7
Location : finishCharacters
Killed by : none
changed conditional boundary to IFNE → SURVIVED

1747

1.1
Location : finishCharacters
Killed by : none
removed negation → NO_COVERAGE

1748

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

1749

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1750

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Replaced Shift Right with Shift Left → NO_COVERAGE

6.6
Location : finishCharacters
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCharacters
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

9.9
Location : finishCharacters
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

10.10
Location : finishCharacters
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

11.11
Location : finishCharacters
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

12.12
Location : finishCharacters
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

1751

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1755

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

8.8
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

9.9
Location : finishCharacters
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

10.10
Location : finishCharacters
Killed by : none
Replaced Shift Right with Shift Left → NO_COVERAGE

11.11
Location : finishCharacters
Killed by : none
Replaced bitwise OR with AND → NO_COVERAGE

12.12
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

14.14
Location : finishCharacters
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

15.15
Location : finishCharacters
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

16.16
Location : finishCharacters
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

17.17
Location : finishCharacters
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

1756

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE

8.8
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE

9.9
Location : finishCharacters
Killed by : none
Replaced bitwise AND with OR → NO_COVERAGE

10.10
Location : finishCharacters
Killed by : none
Replaced bitwise OR with AND → NO_COVERAGE

11.11
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

12.12
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1758

1.1
Location : finishCharacters
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

1760

1.1
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

4.4
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

6.6
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

7.7
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED

8.8
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED

9.9
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
negated conditional → KILLED

10.10
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
negated conditional → KILLED

11.11
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

12.12
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

13.13
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPEQ → KILLED

14.14
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGE → KILLED

15.15
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

16.16
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

17.17
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

18.18
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

19.19
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

20.20
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

21.21
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPLT → KILLED

22.22
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPNE → KILLED

1761

1.1
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR

4.4
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Replaced operate with second operand → KILLED

6.6
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

8.8
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1763

1.1
Location : finishCharacters
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

3.3
Location : finishCharacters
Killed by : none
changed conditional boundary to IFEQ → SURVIVED

4.4
Location : finishCharacters
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IFLE → KILLED

6.6
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IFLT → KILLED

7.7
Location : finishCharacters
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IFNE → KILLED

1767

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED

1769

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED

1770

1.1
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

1775

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → SURVIVED

1776

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

1785

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1786

1.1
Location : finishCharacters
Killed by : none
changed conditional boundary → TIMED_OUT

2.2
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
negated conditional → KILLED

3.3
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

4.4
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPEQ → KILLED

5.5
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGE → KILLED

6.6
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

7.7
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1787

1.1
Location : finishCharacters
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → TIMED_OUT

1788

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1790

1.1
Location : finishCharacters
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
negated conditional → KILLED

3.3
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPEQ → KILLED

4.4
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGE → KILLED

5.5
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

6.6
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

7.7
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1791

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

1792

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1794

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

1796

1.1
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Replaced operate with second operand → KILLED

2.2
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Replaced operate with second operand → KILLED

1797

1.1
Location : finishCharacters
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishCharacters
Killed by : wstream.TestLongerContent.testLongerWithMultiByteChars(wstream.TestLongerContent)
negated conditional → KILLED

3.3
Location : finishCharacters
Killed by : wstream.TestLongerContent.testLongerWithMultiByteChars(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPEQ → KILLED

4.4
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

5.5
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

6.6
Location : finishCharacters
Killed by : wstream.TestLongerContent.testLongerWithMultiByteChars(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPLT → KILLED

7.7
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1801

1.1
Location : finishCharacters
Killed by : wstream.TestLongerContent.testLongerWithMultiByteChars(wstream.TestLongerContent)
changed conditional boundary → KILLED

2.2
Location : finishCharacters
Killed by : none
negated conditional → TIMED_OUT

3.3
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

4.4
Location : finishCharacters
Killed by : wstream.TestLongerContent.testLongerWithMultiByteChars(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

5.5
Location : finishCharacters
Killed by : wstream.TestLongerContent.testLongerWithMultiByteChars(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

6.6
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → TIMED_OUT

7.7
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → TIMED_OUT

1802

1.1
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Changed increment from 1 to -1 → KILLED

2.2
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED

3.3
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

4.4
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
UOI Mutator: Removed unary increment of local variable → KILLED

5.5
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
UOI Mutator: Reversed increment of local variable → KILLED

1803

1.1
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED

5.5
Location : finishCharacters
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
negated conditional → KILLED

7.7
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPEQ → KILLED

9.9
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPNE → KILLED

1804

1.1
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
negated conditional → KILLED

2.2
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IFGE → KILLED

3.3
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IFGT → KILLED

4.4
Location : finishCharacters
Killed by : none
changed conditional boundary to IFLE → SURVIVED

5.5
Location : finishCharacters
Killed by : none
changed conditional boundary to IFLT → SURVIVED

6.6
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IFNE → KILLED

1805

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1808

1.1
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → KILLED

5.5
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary → KILLED

6.6
Location : finishCharacters
Killed by : none
negated conditional → SURVIVED

7.7
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPEQ → KILLED

9.9
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

12.12
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1809

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1812

1.1
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Changed increment from 1 to -1 → KILLED

2.2
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED

3.3
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

4.4
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
UOI Mutator: Removed unary increment of local variable → KILLED

5.5
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
UOI Mutator: Reversed increment of local variable → KILLED

1814

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1817

1.1
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED

5.5
Location : finishCharacters
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
negated conditional → KILLED

7.7
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPEQ → KILLED

9.9
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPNE → KILLED

1823

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1824

1.1
Location : finishCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

6.6
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1825

1.1
Location : finishCharacters
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1826

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1828

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1829

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1831

1.1
Location : finishCharacters
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

1833

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1836

1.1
Location : finishCharacters
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → SURVIVED

1839

1.1
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Replaced operate with second operand → KILLED

6.6
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

8.8
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

1843

1.1
Location : finishCharacters
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCharacters
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR

4.4
Location : finishCharacters
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : finishCharacters
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

1844

1.1
Location : finishCharacters
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
negated conditional → KILLED

2.2
Location : finishCharacters
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
changed conditional boundary to IFEQ → KILLED

3.3
Location : finishCharacters
Killed by : none
changed conditional boundary to IFGE → SURVIVED

4.4
Location : finishCharacters
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : finishCharacters
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
changed conditional boundary to IFLE → KILLED

6.6
Location : finishCharacters
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
changed conditional boundary to IFLT → KILLED

1846

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_entityPending mutated with null check on object → NO_COVERAGE

1850

1.1
Location : finishCharacters
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCharacters
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishCharacters
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishCharacters
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED

5.5
Location : finishCharacters
Killed by : none
Replaced Shift Right with Shift Left → SURVIVED

6.6
Location : finishCharacters
Killed by : none
negated conditional → SURVIVED

7.7
Location : finishCharacters
Killed by : evt.TestLaziness.testEventReaderNonLaziness(evt.TestLaziness)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : finishCharacters
Killed by : none
changed conditional boundary to IFGE → SURVIVED

9.9
Location : finishCharacters
Killed by : none
changed conditional boundary to IFGT → SURVIVED

10.10
Location : finishCharacters
Killed by : none
changed conditional boundary to IFLE → SURVIVED

11.11
Location : finishCharacters
Killed by : none
changed conditional boundary to IFLT → SURVIVED

12.12
Location : finishCharacters
Killed by : none
changed conditional boundary to IFNE → SURVIVED

1851

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1852

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

8.8
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

9.9
Location : finishCharacters
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

10.10
Location : finishCharacters
Killed by : none
Replaced Shift Right with Shift Left → NO_COVERAGE

11.11
Location : finishCharacters
Killed by : none
Replaced bitwise OR with AND → NO_COVERAGE

12.12
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

14.14
Location : finishCharacters
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

15.15
Location : finishCharacters
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

16.16
Location : finishCharacters
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

17.17
Location : finishCharacters
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

1854

1.1
Location : finishCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1855

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

1856

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1858

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE

8.8
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE

9.9
Location : finishCharacters
Killed by : none
Replaced bitwise AND with OR → NO_COVERAGE

10.10
Location : finishCharacters
Killed by : none
Replaced bitwise OR with AND → NO_COVERAGE

11.11
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

12.12
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1867

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1869

1.1
Location : finishCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1870

1.1
Location : finishCharacters
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

1872

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1873

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

8.8
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1876

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1877

1.1
Location : finishCharacters
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

1879

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE

8.8
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

9.9
Location : finishCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : finishCharacters
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : finishCharacters
Killed by : none
negated conditional → NO_COVERAGE

12.12
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

14.14
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

15.15
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

16.16
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

17.17
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

18.18
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

19.19
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

20.20
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

21.21
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

22.22
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

23.23
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

24.24
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1880

1.1
Location : finishCharacters
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportIllegalCDataEnd → NO_COVERAGE

1884

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishCharacters
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

13.13
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1885

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

6.6
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCharacters
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

8.8
Location : finishCharacters
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

9.9
Location : finishCharacters
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

10.10
Location : finishCharacters
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

1886

1.1
Location : finishCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1887

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

1888

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1891

1.1
Location : finishCharacters
Killed by : none
Changed increment from -1 to 1 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
UOI Mutator: Added unary decrement -1 -> -2 to local variable → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
UOI Mutator: Added unary increment -1 -> 0 to local variable → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

1895

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1900

1.1
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → KILLED

5.5
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary → KILLED

6.6
Location : finishCharacters
Killed by : none
negated conditional → SURVIVED

7.7
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPEQ → KILLED

9.9
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

12.12
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1901

1.1
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 57344 with 1 → KILLED

5.5
Location : finishCharacters
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : finishCharacters
Killed by : none
negated conditional → SURVIVED

7.7
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

9.9
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

12.12
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1904

1.1
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Changed increment from 1 to -1 → KILLED

2.2
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED

3.3
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

4.4
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
UOI Mutator: Removed unary increment of local variable → KILLED

5.5
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
UOI Mutator: Reversed increment of local variable → KILLED

1905

1.1
Location : finishCharacters
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
negated conditional → KILLED

3.3
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPEQ → KILLED

4.4
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGE → KILLED

5.5
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

6.6
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

7.7
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1906

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

1907

1.1
Location : finishCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1910

1.1
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 65534 with 1 → KILLED

5.5
Location : finishCharacters
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : finishCharacters
Killed by : none
negated conditional → SURVIVED

7.7
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

9.9
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

12.12
Location : finishCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

1914

1.1
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
Changed increment from 1 to -1 → KILLED

2.2
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED

3.3
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

4.4
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
UOI Mutator: Removed unary increment of local variable → KILLED

5.5
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
UOI Mutator: Reversed increment of local variable → KILLED

1916

1.1
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED

2.2
Location : finishCharacters
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED

1919

1.1
Location : finishCharacters
Killed by : none
negated conditional → SURVIVED

2.2
Location : finishCharacters
Killed by : none
negated conditional → SURVIVED

3.3
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_cfgCoalescing mutated with null check on object → SURVIVED

4.4
Location : finishCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_entityPending mutated with null check on object → SURVIVED

5.5
Location : finishCharacters
Killed by : none
changed conditional boundary to IFEQ → SURVIVED

6.6
Location : finishCharacters
Killed by : none
changed conditional boundary to IFGE → SURVIVED

7.7
Location : finishCharacters
Killed by : none
changed conditional boundary to IFGE → SURVIVED

8.8
Location : finishCharacters
Killed by : none
changed conditional boundary to IFGT → SURVIVED

9.9
Location : finishCharacters
Killed by : none
changed conditional boundary to IFGT → SURVIVED

10.10
Location : finishCharacters
Killed by : none
changed conditional boundary to IFLE → SURVIVED

11.11
Location : finishCharacters
Killed by : none
changed conditional boundary to IFLE → SURVIVED

12.12
Location : finishCharacters
Killed by : none
changed conditional boundary to IFLT → SURVIVED

13.13
Location : finishCharacters
Killed by : none
changed conditional boundary to IFLT → SURVIVED

14.14
Location : finishCharacters
Killed by : none
changed conditional boundary to IFNE → SURVIVED

1920

1.1
Location : finishCharacters
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::finishCoalescedText → NO_COVERAGE

1930

1.1
Location : finishSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and fieldmTmpChar mutated with null check on object → NO_COVERAGE

1934

1.1
Location : finishSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE

8.8
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

9.9
Location : finishSpace
Killed by : none
negated conditional → NO_COVERAGE

10.10
Location : finishSpace
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : finishSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

12.12
Location : finishSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

14.14
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

15.15
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

16.16
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

17.17
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

18.18
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

19.19
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

20.20
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

21.21
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

22.22
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1936

1.1
Location : finishSpace
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : finishSpace
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

7.7
Location : finishSpace
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

1940

1.1
Location : finishSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

1942

1.1
Location : finishSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

1943

1.1
Location : finishSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1944

1.1
Location : finishSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1947

1.1
Location : finishSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1950

1.1
Location : finishSpace
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

6.6
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1951

1.1
Location : finishSpace
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : finishSpace
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

1954

1.1
Location : finishSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1956

1.1
Location : finishSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

1957

1.1
Location : finishSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishSpace
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

13.13
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1960

1.1
Location : finishSpace
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

1962

1.1
Location : finishSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : finishSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1963

1.1
Location : finishSpace
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

1964

1.1
Location : finishSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : finishSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1965

1.1
Location : finishSpace
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

6.6
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1966

1.1
Location : finishSpace
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : finishSpace
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

1967

1.1
Location : finishSpace
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1968

1.1
Location : finishSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

1969

1.1
Location : finishSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1971

1.1
Location : finishSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

6.6
Location : finishSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishSpace
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

8.8
Location : finishSpace
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

9.9
Location : finishSpace
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

10.10
Location : finishSpace
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

1974

1.1
Location : finishSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1976

1.1
Location : finishSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : finishSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

1977

1.1
Location : finishSpace
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

1979

1.1
Location : finishSpace
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

1980

1.1
Location : finishSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1981

1.1
Location : finishSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE

8.8
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE

9.9
Location : finishSpace
Killed by : none
negated conditional → NO_COVERAGE

10.10
Location : finishSpace
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : finishSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

12.12
Location : finishSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

14.14
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

15.15
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

16.16
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

17.17
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

18.18
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

19.19
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

20.20
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

21.21
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

22.22
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1982

1.1
Location : finishSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1983

1.1
Location : finishSpace
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwInvalidSpace → NO_COVERAGE

1987

1.1
Location : finishSpace
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishSpace
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

1988

1.1
Location : finishSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

1989

1.1
Location : finishSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

1991

1.1
Location : finishSpace
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishSpace
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishSpace
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishSpace
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

1994

1.1
Location : finishSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

1995

1.1
Location : finishSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2.2
Location : finishSpace
Killed by : none
removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → NO_COVERAGE

2016

1.1
Location : finishCoalescedText
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : finishCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2017

1.1
Location : finishCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

3.3
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

4.4
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

2022

1.1
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 60 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : finishCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : finishCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

10.10
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

11.11
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

13.13
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2026

1.1
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : finishCoalescedText
Killed by : none
changed conditional boundary → NO_COVERAGE

7.7
Location : finishCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

8.8
Location : finishCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

9.9
Location : finishCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

10.10
Location : finishCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

11.11
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

12.12
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

13.13
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

14.14
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

15.15
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2027

1.1
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : finishCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

8.8
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

9.9
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

10.10
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

11.11
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

2032

1.1
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

4.4
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

5.5
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

6.6
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

7.7
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

8.8
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

9.9
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

10.10
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

11.11
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

12.12
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

13.13
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

14.14
Location : finishCoalescedText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

15.15
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 33 with 1 → NO_COVERAGE

16.16
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE

17.17
Location : finishCoalescedText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

18.18
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 91 with 1 → NO_COVERAGE

19.19
Location : finishCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

20.20
Location : finishCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

21.21
Location : finishCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

22.22
Location : finishCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

23.23
Location : finishCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

24.24
Location : finishCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

25.25
Location : finishCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

26.26
Location : finishCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

27.27
Location : finishCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

28.28
Location : finishCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

29.29
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

30.30
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

31.31
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

32.32
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

33.33
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

34.34
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

35.35
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

36.36
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

37.37
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

38.38
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2038

1.1
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : finishCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : finishCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2039

1.1
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

8.8
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 6 with 1 → NO_COVERAGE

9.9
Location : finishCoalescedText
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : finishCoalescedText
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

11.11
Location : finishCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

12.12
Location : finishCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : finishCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

14.14
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

15.15
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

16.16
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

17.17
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

18.18
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

19.19
Location : finishCoalescedText
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

20.20
Location : finishCoalescedText
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

21.21
Location : finishCoalescedText
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

22.22
Location : finishCoalescedText
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2040

1.1
Location : finishCoalescedText
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : finishCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2041

1.1
Location : finishCoalescedText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2043

1.1
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : finishCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : finishCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : finishCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2044

1.1
Location : finishCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

3.3
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

4.4
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

5.5
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

6.6
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2045

1.1
Location : finishCoalescedText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportTreeUnexpChar → NO_COVERAGE

2048

1.1
Location : finishCoalescedText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::finishCoalescedCData → NO_COVERAGE

2050

1.1
Location : finishCoalescedText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::finishCoalescedCharacters → NO_COVERAGE

2051

1.1
Location : finishCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : finishCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_entityPending mutated with null check on object → NO_COVERAGE

3.3
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

4.4
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

7.7
Location : finishCoalescedText
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

2063

1.1
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → NO_COVERAGE

2064

1.1
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

2066

1.1
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2067

1.1
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2078

1.1
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2079

1.1
Location : finishCoalescedCData
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2080

1.1
Location : finishCoalescedCData
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2081

1.1
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2083

1.1
Location : finishCoalescedCData
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2084

1.1
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2085

1.1
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2087

1.1
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

2089

1.1
Location : finishCoalescedCData
Killed by : none
Replaced operate with second operand → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Replaced operate with second operand → NO_COVERAGE

2090

1.1
Location : finishCoalescedCData
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2094

1.1
Location : finishCoalescedCData
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2095

1.1
Location : finishCoalescedCData
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2096

1.1
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2097

1.1
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

2098

1.1
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2101

1.1
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2102

1.1
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2105

1.1
Location : finishCoalescedCData
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2107

1.1
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2110

1.1
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2116

1.1
Location : finishCoalescedCData
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2117

1.1
Location : finishCoalescedCData
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2119

1.1
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2120

1.1
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2122

1.1
Location : finishCoalescedCData
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

2124

1.1
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2127

1.1
Location : finishCoalescedCData
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

2135

1.1
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2139

1.1
Location : finishCoalescedCData
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2140

1.1
Location : finishCoalescedCData
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2142

1.1
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2143

1.1
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

8.8
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2146

1.1
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2147

1.1
Location : finishCoalescedCData
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2151

1.1
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

8.8
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

9.9
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

10.10
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

11.11
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

12.12
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

13.13
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE

14.14
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

15.15
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

16.16
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

17.17
Location : finishCoalescedCData
Killed by : none
changed conditional boundary → NO_COVERAGE

18.18
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

19.19
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

20.20
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

21.21
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

22.22
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

23.23
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

24.24
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

25.25
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

26.26
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

27.27
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

28.28
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

29.29
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

30.30
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

31.31
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

32.32
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

33.33
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2152

1.1
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

2153

1.1
Location : finishCoalescedCData
Killed by : none
Changed increment from -1 to 1 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Added unary decrement -1 -> -2 to local variable → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Added unary increment -1 -> 0 to local variable → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2156

1.1
Location : finishCoalescedCData
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Changed increment from -1 to 1 → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

8.8
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

9.9
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Added unary decrement -1 -> -2 to local variable → NO_COVERAGE

10.10
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Added unary increment -1 -> 0 to local variable → NO_COVERAGE

11.11
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

12.12
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2157

1.1
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

8.8
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

9.9
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

10.10
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2158

1.1
Location : finishCoalescedCData
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2159

1.1
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2160

1.1
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2163

1.1
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

2164

1.1
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2171

1.1
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2172

1.1
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

12.12
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2175

1.1
Location : finishCoalescedCData
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2176

1.1
Location : finishCoalescedCData
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2177

1.1
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2178

1.1
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2181

1.1
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishCoalescedCData
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCoalescedCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishCoalescedCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2186

1.1
Location : finishCoalescedCData
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishCoalescedCData
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2188

1.1
Location : finishCoalescedCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2.2
Location : finishCoalescedCData
Killed by : none
removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → NO_COVERAGE

2198

1.1
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → NO_COVERAGE

2199

1.1
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

2201

1.1
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2202

1.1
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2210

1.1
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2211

1.1
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2212

1.1
Location : finishCoalescedCharacters
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2213

1.1
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2215

1.1
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2216

1.1
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2217

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2219

1.1
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

2221

1.1
Location : finishCoalescedCharacters
Killed by : none
Replaced operate with second operand → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Replaced operate with second operand → NO_COVERAGE

2222

1.1
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2226

1.1
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2227

1.1
Location : finishCoalescedCharacters
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2228

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2229

1.1
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

2230

1.1
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2233

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2234

1.1
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2237

1.1
Location : finishCoalescedCharacters
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2239

1.1
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2242

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2248

1.1
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2249

1.1
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2250

1.1
Location : finishCoalescedCharacters
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2251

1.1
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2253

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2254

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2256

1.1
Location : finishCoalescedCharacters
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

2258

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2261

1.1
Location : finishCoalescedCharacters
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

2264

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2268

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2269

1.1
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

2271

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_entityPending mutated with null check on object → NO_COVERAGE

2275

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
Replaced Shift Right with Shift Left → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

9.9
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

10.10
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

11.11
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

12.12
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

2276

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2277

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

9.9
Location : finishCoalescedCharacters
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

10.10
Location : finishCoalescedCharacters
Killed by : none
Replaced Shift Right with Shift Left → NO_COVERAGE

11.11
Location : finishCoalescedCharacters
Killed by : none
Replaced bitwise OR with AND → NO_COVERAGE

12.12
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

14.14
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

15.15
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

16.16
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

17.17
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2279

1.1
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2280

1.1
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2281

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2283

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE

9.9
Location : finishCoalescedCharacters
Killed by : none
Replaced bitwise AND with OR → NO_COVERAGE

10.10
Location : finishCoalescedCharacters
Killed by : none
Replaced bitwise OR with AND → NO_COVERAGE

11.11
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

12.12
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2292

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2294

1.1
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2295

1.1
Location : finishCoalescedCharacters
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2297

1.1
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2298

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2301

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2302

1.1
Location : finishCoalescedCharacters
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2304

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

9.9
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

12.12
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

14.14
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

15.15
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

16.16
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

17.17
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

18.18
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

19.19
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

20.20
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

21.21
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

22.22
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

23.23
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

24.24
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2305

1.1
Location : finishCoalescedCharacters
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportIllegalCDataEnd → NO_COVERAGE

2309

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

13.13
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2310

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

9.9
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

10.10
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2311

1.1
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2312

1.1
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2313

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2316

1.1
Location : finishCoalescedCharacters
Killed by : none
Changed increment from -1 to 1 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Added unary decrement -1 -> -2 to local variable → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Added unary increment -1 -> 0 to local variable → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2320

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2325

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2326

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

12.12
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2329

1.1
Location : finishCoalescedCharacters
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2330

1.1
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2331

1.1
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2332

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2335

1.1
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : finishCoalescedCharacters
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : finishCoalescedCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : finishCoalescedCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2339

1.1
Location : finishCoalescedCharacters
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : finishCoalescedCharacters
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2341

1.1
Location : finishCoalescedCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2.2
Location : finishCoalescedCharacters
Killed by : none
removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → NO_COVERAGE

2359

1.1
Location : skipCoalescedText
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : skipCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2360

1.1
Location : skipCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

3.3
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

4.4
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

2361

1.1
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : skipCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : skipCoalescedText
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2365

1.1
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 60 with 1 → NO_COVERAGE

5.5
Location : skipCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : skipCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : skipCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

10.10
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

11.11
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

13.13
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2369

1.1
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE

5.5
Location : skipCoalescedText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : skipCoalescedText
Killed by : none
changed conditional boundary → NO_COVERAGE

7.7
Location : skipCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

8.8
Location : skipCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

9.9
Location : skipCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

10.10
Location : skipCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

11.11
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

12.12
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

13.13
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

14.14
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

15.15
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2370

1.1
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE

5.5
Location : skipCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : skipCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

8.8
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

9.9
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

10.10
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

11.11
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

2371

1.1
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : skipCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : skipCoalescedText
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2374

1.1
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

4.4
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

5.5
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

6.6
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

7.7
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

8.8
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

9.9
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

10.10
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

11.11
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

12.12
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

13.13
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

14.14
Location : skipCoalescedText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

15.15
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 33 with 1 → NO_COVERAGE

16.16
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE

17.17
Location : skipCoalescedText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

18.18
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 91 with 1 → NO_COVERAGE

19.19
Location : skipCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

20.20
Location : skipCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

21.21
Location : skipCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

22.22
Location : skipCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

23.23
Location : skipCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

24.24
Location : skipCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

25.25
Location : skipCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

26.26
Location : skipCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

27.27
Location : skipCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

28.28
Location : skipCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

29.29
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

30.30
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

31.31
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

32.32
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

33.33
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

34.34
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

35.35
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

36.36
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

37.37
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

38.38
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2377

1.1
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : skipCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : skipCoalescedText
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2380

1.1
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE

5.5
Location : skipCoalescedText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : skipCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : skipCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2381

1.1
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

8.8
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 6 with 1 → NO_COVERAGE

9.9
Location : skipCoalescedText
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : skipCoalescedText
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

11.11
Location : skipCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

12.12
Location : skipCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : skipCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

14.14
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

15.15
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

16.16
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

17.17
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

18.18
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

19.19
Location : skipCoalescedText
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

20.20
Location : skipCoalescedText
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

21.21
Location : skipCoalescedText
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

22.22
Location : skipCoalescedText
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2382

1.1
Location : skipCoalescedText
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : skipCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2383

1.1
Location : skipCoalescedText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2385

1.1
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : skipCoalescedText
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : skipCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : skipCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : skipCoalescedText
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2386

1.1
Location : skipCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

3.3
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

4.4
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

5.5
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

6.6
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2387

1.1
Location : skipCoalescedText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportTreeUnexpChar → NO_COVERAGE

2390

1.1
Location : skipCoalescedText
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::skipCData → NO_COVERAGE

2392

1.1
Location : skipCoalescedText
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

3.3
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

4.4
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

5.5
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

6.6
Location : skipCoalescedText
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

2393

1.1
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCoalescedText
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : skipCoalescedText
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : skipCoalescedText
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2409

1.1
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → NO_COVERAGE

2410

1.1
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

2418

1.1
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2419

1.1
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

2420

1.1
Location : skipComment
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipComment
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2421

1.1
Location : skipComment
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2422

1.1
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2423

1.1
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

2425

1.1
Location : skipComment
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipComment
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

5.5
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

7.7
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2426

1.1
Location : skipComment
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : skipComment
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : skipComment
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : skipComment
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : skipComment
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2427

1.1
Location : skipComment
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipComment
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipComment
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipComment
Killed by : none
Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE

5.5
Location : skipComment
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : skipComment
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : skipComment
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2428

1.1
Location : skipComment
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : skipComment
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

3.3
Location : skipComment
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

4.4
Location : skipComment
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

5.5
Location : skipComment
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

6.6
Location : skipComment
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

2429

1.1
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2432

1.1
Location : skipComment
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipComment
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipComment
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipComment
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : skipComment
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : skipComment
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : skipComment
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2433

1.1
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2437

1.1
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2440

1.1
Location : skipComment
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipComment
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipComment
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipComment
Killed by : none
Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE

5.5
Location : skipComment
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : skipComment
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : skipComment
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2446

1.1
Location : skipComment
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipComment
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2447

1.1
Location : skipComment
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2449

1.1
Location : skipComment
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipComment
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipComment
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipComment
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : skipComment
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : skipComment
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2450

1.1
Location : skipComment
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipComment
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipComment
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipComment
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : skipComment
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : skipComment
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2452

1.1
Location : skipComment
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

2456

1.1
Location : skipComment
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

2459

1.1
Location : skipComment
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipComment
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2460

1.1
Location : skipComment
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2462

1.1
Location : skipComment
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipComment
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipComment
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipComment
Killed by : none
Bug fixed: CRCR replace with One, Substituted 45 with 1 → NO_COVERAGE

5.5
Location : skipComment
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : skipComment
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

10.10
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

11.11
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

13.13
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2463

1.1
Location : skipComment
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipComment
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipComment
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipComment
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : skipComment
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : skipComment
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2464

1.1
Location : skipComment
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipComment
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2465

1.1
Location : skipComment
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2467

1.1
Location : skipComment
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipComment
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : skipComment
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : skipComment
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : skipComment
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : skipComment
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : skipComment
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

8.8
Location : skipComment
Killed by : none
Replaced operate with second operand → NO_COVERAGE

9.9
Location : skipComment
Killed by : none
Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE

10.10
Location : skipComment
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : skipComment
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

12.12
Location : skipComment
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

14.14
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

15.15
Location : skipComment
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

16.16
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

17.17
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

18.18
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

19.19
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

20.20
Location : skipComment
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2468

1.1
Location : skipComment
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportDoubleHyphenInComments → NO_COVERAGE

2484

1.1
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → NO_COVERAGE

2485

1.1
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

2493

1.1
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2494

1.1
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

2495

1.1
Location : skipPI
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipPI
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2496

1.1
Location : skipPI
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2497

1.1
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2498

1.1
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

2500

1.1
Location : skipPI
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipPI
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

5.5
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

7.7
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2501

1.1
Location : skipPI
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : skipPI
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : skipPI
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : skipPI
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : skipPI
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2502

1.1
Location : skipPI
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipPI
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE

5.5
Location : skipPI
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : skipPI
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : skipPI
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2503

1.1
Location : skipPI
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : skipPI
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

3.3
Location : skipPI
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

4.4
Location : skipPI
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

5.5
Location : skipPI
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

6.6
Location : skipPI
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

2504

1.1
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2507

1.1
Location : skipPI
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipPI
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : skipPI
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : skipPI
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : skipPI
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2508

1.1
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2512

1.1
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2515

1.1
Location : skipPI
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipPI
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE

5.5
Location : skipPI
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : skipPI
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : skipPI
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2519

1.1
Location : skipPI
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipPI
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2520

1.1
Location : skipPI
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2522

1.1
Location : skipPI
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipPI
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : skipPI
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : skipPI
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2523

1.1
Location : skipPI
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipPI
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : skipPI
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : skipPI
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2525

1.1
Location : skipPI
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

2529

1.1
Location : skipPI
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

2532

1.1
Location : skipPI
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipPI
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2533

1.1
Location : skipPI
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2535

1.1
Location : skipPI
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipPI
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE

5.5
Location : skipPI
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : skipPI
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

10.10
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

11.11
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

13.13
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2536

1.1
Location : skipPI
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipPI
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : skipPI
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : skipPI
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : skipPI
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2543

1.1
Location : skipPI
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipPI
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : skipPI
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : skipPI
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : skipPI
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2544

1.1
Location : skipPI
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipPI
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE

5.5
Location : skipPI
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : skipPI
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : skipPI
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

12.12
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2547

1.1
Location : skipPI
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipPI
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipPI
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE

5.5
Location : skipPI
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : skipPI
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : skipPI
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : skipPI
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2558

1.1
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → SURVIVED

2559

1.1
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

2567

1.1
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

2568

1.1
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

2569

1.1
Location : skipCharacters
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
negated conditional → KILLED

3.3
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPEQ → KILLED

4.4
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGE → KILLED

5.5
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

6.6
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

7.7
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

2570

1.1
Location : skipCharacters
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2571

1.1
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2572

1.1
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

2574

1.1
Location : skipCharacters
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : skipCharacters
Killed by : none
negated conditional → TIMED_OUT

3.3
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

4.4
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

5.5
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

6.6
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → TIMED_OUT

7.7
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → TIMED_OUT

2575

1.1
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Changed increment from 1 to -1 → KILLED

2.2
Location : skipCharacters
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → TIMED_OUT

3.3
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

4.4
Location : skipCharacters
Killed by : none
UOI Mutator: Removed unary increment of local variable → TIMED_OUT

5.5
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
UOI Mutator: Reversed increment of local variable → KILLED

2576

1.1
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED

5.5
Location : skipCharacters
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
negated conditional → KILLED

7.7
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPEQ → KILLED

9.9
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPNE → KILLED

2577

1.1
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
negated conditional → KILLED

2.2
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IFGE → KILLED

3.3
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IFGT → KILLED

4.4
Location : skipCharacters
Killed by : none
changed conditional boundary to IFLE → SURVIVED

5.5
Location : skipCharacters
Killed by : none
changed conditional boundary to IFLT → SURVIVED

6.6
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IFNE → KILLED

2578

1.1
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

2581

1.1
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → KILLED

5.5
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary → KILLED

6.6
Location : skipCharacters
Killed by : none
negated conditional → SURVIVED

7.7
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPEQ → KILLED

9.9
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

12.12
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

2582

1.1
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

2586

1.1
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2589

1.1
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED

5.5
Location : skipCharacters
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
negated conditional → KILLED

7.7
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPEQ → KILLED

9.9
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPLT → KILLED

11.11
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPNE → KILLED

2595

1.1
Location : skipCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipCharacters
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2596

1.1
Location : skipCharacters
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2598

1.1
Location : skipCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : skipCharacters
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : skipCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2599

1.1
Location : skipCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : skipCharacters
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : skipCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2601

1.1
Location : skipCharacters
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

2605

1.1
Location : skipCharacters
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

2608

1.1
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Replaced operate with second operand → KILLED

6.6
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

8.8
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

2609

1.1
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

2612

1.1
Location : skipCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : skipCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2613

1.1
Location : skipCharacters
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : skipCharacters
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

3.3
Location : skipCharacters
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

4.4
Location : skipCharacters
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : skipCharacters
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : skipCharacters
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

2614

1.1
Location : skipCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : skipCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : skipCharacters
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2622

1.1
Location : skipCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : skipCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2624

1.1
Location : skipCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipCharacters
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2625

1.1
Location : skipCharacters
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2627

1.1
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2628

1.1
Location : skipCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE

5.5
Location : skipCharacters
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : skipCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

8.8
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2631

1.1
Location : skipCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : skipCharacters
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : skipCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : skipCharacters
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2632

1.1
Location : skipCharacters
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : skipCharacters
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : skipCharacters
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : skipCharacters
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : skipCharacters
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2634

1.1
Location : skipCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : skipCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : skipCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE

8.8
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

9.9
Location : skipCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : skipCharacters
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : skipCharacters
Killed by : none
negated conditional → NO_COVERAGE

12.12
Location : skipCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : skipCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

14.14
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

15.15
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

16.16
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

17.17
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

18.18
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

19.19
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

20.20
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

21.21
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

22.22
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

23.23
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

24.24
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2635

1.1
Location : skipCharacters
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportIllegalCDataEnd → NO_COVERAGE

2644

1.1
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → KILLED

5.5
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary → KILLED

6.6
Location : skipCharacters
Killed by : none
negated conditional → SURVIVED

7.7
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPEQ → KILLED

9.9
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

12.12
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

2645

1.1
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR

4.4
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 57344 with 1 → KILLED

5.5
Location : skipCharacters
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : skipCharacters
Killed by : none
negated conditional → SURVIVED

7.7
Location : skipCharacters
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

9.9
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

12.12
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

2648

1.1
Location : skipCharacters
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCharacters
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCharacters
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE

5.5
Location : skipCharacters
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : skipCharacters
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : skipCharacters
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : skipCharacters
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2658

1.1
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → NO_COVERAGE

2659

1.1
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

2667

1.1
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2668

1.1
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

2669

1.1
Location : skipCData
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2670

1.1
Location : skipCData
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2671

1.1
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2672

1.1
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

2674

1.1
Location : skipCData
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

7.7
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2675

1.1
Location : skipCData
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2676

1.1
Location : skipCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : skipCData
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : skipCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2677

1.1
Location : skipCData
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

6.6
Location : skipCData
Killed by : none
changed conditional boundary to IFNE → NO_COVERAGE

2678

1.1
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2681

1.1
Location : skipCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : skipCData
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : skipCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2682

1.1
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2686

1.1
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2689

1.1
Location : skipCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : skipCData
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : skipCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2695

1.1
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2696

1.1
Location : skipCData
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

6.6
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2697

1.1
Location : skipCData
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2698

1.1
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2700

1.1
Location : skipCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : skipCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2701

1.1
Location : skipCData
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2702

1.1
Location : skipCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : skipCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2704

1.1
Location : skipCData
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

2708

1.1
Location : skipCData
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

2713

1.1
Location : skipCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2716

1.1
Location : skipCData
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2717

1.1
Location : skipCData
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2719

1.1
Location : skipCData
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2720

1.1
Location : skipCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : skipCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2721

1.1
Location : skipCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : skipCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

8.8
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

11.11
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2723

1.1
Location : skipCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : skipCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2724

1.1
Location : skipCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : skipCData
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : skipCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

13.13
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2729

1.1
Location : skipCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : skipCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : skipCData
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2737

1.1
Location : skipCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : skipCData
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : skipCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2738

1.1
Location : skipCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : skipCData
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : skipCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

12.12
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2741

1.1
Location : skipCData
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipCData
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipCData
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE

5.5
Location : skipCData
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : skipCData
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : skipCData
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : skipCData
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2752

1.1
Location : skipSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2755

1.1
Location : skipSpace
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipSpace
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

4.4
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

5.5
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

6.6
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2756

1.1
Location : skipSpace
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : skipSpace
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

3.3
Location : skipSpace
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

4.4
Location : skipSpace
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : skipSpace
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : skipSpace
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

2759

1.1
Location : skipSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2761

1.1
Location : skipSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

2762

1.1
Location : skipSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE

5.5
Location : skipSpace
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : skipSpace
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : skipSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

13.13
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2765

1.1
Location : skipSpace
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : skipSpace
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : skipSpace
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : skipSpace
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : skipSpace
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2767

1.1
Location : skipSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : skipSpace
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : skipSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2768

1.1
Location : skipSpace
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

2769

1.1
Location : skipSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE

5.5
Location : skipSpace
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : skipSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2770

1.1
Location : skipSpace
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipSpace
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

4.4
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

5.5
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

6.6
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2771

1.1
Location : skipSpace
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : skipSpace
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

3.3
Location : skipSpace
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

4.4
Location : skipSpace
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : skipSpace
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : skipSpace
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

2774

1.1
Location : skipSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2776

1.1
Location : skipSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : skipSpace
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : skipSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2777

1.1
Location : skipSpace
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : skipSpace
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : skipSpace
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : skipSpace
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : skipSpace
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2779

1.1
Location : skipSpace
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

2780

1.1
Location : skipSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipSpace
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : skipSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : skipSpace
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : skipSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : skipSpace
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : skipSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE

8.8
Location : skipSpace
Killed by : none
Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE

9.9
Location : skipSpace
Killed by : none
negated conditional → NO_COVERAGE

10.10
Location : skipSpace
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : skipSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

12.12
Location : skipSpace
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

14.14
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

15.15
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

16.16
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

17.17
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

18.18
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

19.19
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

20.20
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

21.21
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

22.22
Location : skipSpace
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2781

1.1
Location : skipSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2782

1.1
Location : skipSpace
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwInvalidSpace → NO_COVERAGE

2785

1.1
Location : skipSpace
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2800

1.1
Location : skipInternalWs
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

3.3
Location : skipInternalWs
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : skipInternalWs
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

2801

1.1
Location : skipInternalWs
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2803

1.1
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Replaced operate with second operand → KILLED

6.6
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : skipInternalWs
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : skipInternalWs
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : skipInternalWs
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

2804

1.1
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : skipInternalWs
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR

4.4
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED

5.5
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary → KILLED

6.6
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

7.7
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

9.9
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGE → KILLED

10.10
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

11.11
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

12.12
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPLT → KILLED

13.13
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPNE → KILLED

2805

1.1
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

2.2
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IFEQ → KILLED

3.3
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IFGE → KILLED

4.4
Location : skipInternalWs
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IFLE → KILLED

6.6
Location : skipInternalWs
Killed by : none
changed conditional boundary to IFLT → SURVIVED

2806

1.1
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

2808

1.1
Location : skipInternalWs
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportTreeUnexpChar → NO_COVERAGE

2812

1.1
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED

5.5
Location : skipInternalWs
Killed by : none
negated conditional → SURVIVED

6.6
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

8.8
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

2813

1.1
Location : skipInternalWs
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

2814

1.1
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED

5.5
Location : skipInternalWs
Killed by : none
negated conditional → SURVIVED

6.6
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

8.8
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

2815

1.1
Location : skipInternalWs
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : skipInternalWs
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : skipInternalWs
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : skipInternalWs
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2816

1.1
Location : skipInternalWs
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2818

1.1
Location : skipInternalWs
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipInternalWs
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipInternalWs
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipInternalWs
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : skipInternalWs
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : skipInternalWs
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipInternalWs
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : skipInternalWs
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

10.10
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

11.11
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

13.13
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2819

1.1
Location : skipInternalWs
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : skipInternalWs
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : skipInternalWs
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : skipInternalWs
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : skipInternalWs
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : skipInternalWs
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : skipInternalWs
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : skipInternalWs
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2821

1.1
Location : skipInternalWs
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

2822

1.1
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

4.4
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

6.6
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

7.7
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED

8.8
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED

9.9
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

10.10
Location : skipInternalWs
Killed by : none
negated conditional → SURVIVED

11.11
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

12.12
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

13.13
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

14.14
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

15.15
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

16.16
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

17.17
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

18.18
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

19.19
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPLT → KILLED

20.20
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

21.21
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPNE → KILLED

22.22
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

2823

1.1
Location : skipInternalWs
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwInvalidSpace → NO_COVERAGE

2826

1.1
Location : skipInternalWs
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

3.3
Location : skipInternalWs
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : skipInternalWs
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

2827

1.1
Location : skipInternalWs
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2829

1.1
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Replaced operate with second operand → KILLED

6.6
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : skipInternalWs
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : skipInternalWs
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : skipInternalWs
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

2830

1.1
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED

5.5
Location : skipInternalWs
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

7.7
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

9.9
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGE → KILLED

10.10
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

11.11
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

12.12
Location : skipInternalWs
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

13.13
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPNE → KILLED

2832

1.1
Location : skipInternalWs
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

2838

1.1
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary → KILLED

6.6
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Changed increment from 1 to -1 → KILLED

7.7
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

8.8
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

9.9
Location : matchAsciiKeyword
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

10.10
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

11.11
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

12.12
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPLT → KILLED

13.13
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPNE → KILLED

14.14
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED

15.15
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

16.16
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
UOI Mutator: Removed unary increment of local variable → KILLED

17.17
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
UOI Mutator: Reversed increment of local variable → KILLED

2839

1.1
Location : matchAsciiKeyword
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

3.3
Location : matchAsciiKeyword
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : matchAsciiKeyword
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : matchAsciiKeyword
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

2840

1.1
Location : matchAsciiKeyword
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2842

1.1
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Replaced operate with second operand → KILLED

6.6
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : matchAsciiKeyword
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : matchAsciiKeyword
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : matchAsciiKeyword
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

2843

1.1
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

2.2
Location : matchAsciiKeyword
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

3.3
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

4.4
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

5.5
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPLT → KILLED

6.6
Location : matchAsciiKeyword
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPNE → KILLED

2844

1.1
Location : matchAsciiKeyword
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportTreeUnexpChar → NO_COVERAGE

2864

1.1
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED

5.5
Location : checkInTreeIndentation
Killed by : none
negated conditional → SURVIVED

6.6
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

8.8
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

2866

1.1
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : checkInTreeIndentation
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

5.5
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

6.6
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

7.7
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

8.8
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

11.11
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

12.12
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

13.13
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

14.14
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

15.15
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

2867

1.1
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

8.8
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE

9.9
Location : checkInTreeIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

10.10
Location : checkInTreeIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

11.11
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

12.12
Location : checkInTreeIndentation
Killed by : none
removed call to com/fasterxml/aalto/util/TextBuilder::resetWithIndentation → NO_COVERAGE

2868

1.1
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE

5.5
Location : checkInTreeIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : checkInTreeIndentation
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2870

1.1
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : checkInTreeIndentation
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : checkInTreeIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

10.10
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

11.11
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

13.13
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2871

1.1
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : checkInTreeIndentation
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : checkInTreeIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2874

1.1
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → KILLED

2876

1.1
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary → KILLED

2.2
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

3.3
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

2877

1.1
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → KILLED

2879

1.1
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

2.2
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

2880

1.1
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

4.4
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

6.6
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

7.7
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED

8.8
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED

9.9
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

10.10
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

11.11
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

12.12
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

13.13
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGE → KILLED

14.14
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGE → KILLED

15.15
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

16.16
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

17.17
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

18.18
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGT → KILLED

19.19
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

20.20
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

21.21
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPNE → KILLED

22.22
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPNE → KILLED

2882

1.1
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED

5.5
Location : checkInTreeIndentation
Killed by : none
negated conditional → SURVIVED

6.6
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

8.8
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

9.9
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

2883

1.1
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

4.4
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

6.6
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

7.7
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

8.8
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

9.9
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

10.10
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

11.11
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Replaced operate with second operand → KILLED

12.12
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

13.13
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Replaced operate with second operand → KILLED

14.14
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 33 with 1 → KILLED

15.15
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary → KILLED

16.16
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

17.17
Location : checkInTreeIndentation
Killed by : none
negated conditional → SURVIVED

18.18
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

19.19
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

20.20
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

21.21
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

22.22
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

23.23
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

24.24
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

25.25
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

26.26
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

27.27
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

28.28
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

29.29
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPGT → KILLED

30.30
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

31.31
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPLT → KILLED

32.32
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

33.33
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPNE → KILLED

34.34
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

2884

1.1
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

4.4
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

6.6
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

7.7
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

8.8
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED

9.9
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

10.10
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

11.11
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED

12.12
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
removed call to com/fasterxml/aalto/util/TextBuilder::resetWithIndentation → KILLED

2885

1.1
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED

5.5
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : checkInTreeIndentation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

2888

1.1
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED

2889

1.1
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

4.4
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

6.6
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

7.7
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

8.8
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED

9.9
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

10.10
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

2890

1.1
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → SURVIVED

7.7
Location : checkInTreeIndentation
Killed by : none
removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → SURVIVED

2891

1.1
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : checkInTreeIndentation
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

2894

1.1
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : checkInTreeIndentation
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : checkInTreeIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2895

1.1
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : checkInTreeIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2896

1.1
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

4.4
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

6.6
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

7.7
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

8.8
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

9.9
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

10.10
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE

11.11
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE

12.12
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE

13.13
Location : checkInTreeIndentation
Killed by : none
negated conditional → NO_COVERAGE

14.14
Location : checkInTreeIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

15.15
Location : checkInTreeIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

16.16
Location : checkInTreeIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

17.17
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

18.18
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

19.19
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

20.20
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

21.21
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2897

1.1
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

6.6
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2898

1.1
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2899

1.1
Location : checkInTreeIndentation
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

2901

1.1
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2902

1.1
Location : checkInTreeIndentation
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

3.3
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

4.4
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

5.5
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

6.6
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2904

1.1
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

4.4
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

5.5
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

6.6
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

7.7
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

8.8
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

9.9
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

10.10
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

11.11
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

12.12
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

13.13
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 60 with 1 → NO_COVERAGE

14.14
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

15.15
Location : checkInTreeIndentation
Killed by : none
Replaced operate with second operand → NO_COVERAGE

16.16
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

17.17
Location : checkInTreeIndentation
Killed by : none
Replaced operate with second operand → NO_COVERAGE

18.18
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 33 with 1 → NO_COVERAGE

19.19
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary → NO_COVERAGE

20.20
Location : checkInTreeIndentation
Killed by : none
negated conditional → NO_COVERAGE

21.21
Location : checkInTreeIndentation
Killed by : none
negated conditional → NO_COVERAGE

22.22
Location : checkInTreeIndentation
Killed by : none
negated conditional → NO_COVERAGE

23.23
Location : checkInTreeIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

24.24
Location : checkInTreeIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

25.25
Location : checkInTreeIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

26.26
Location : checkInTreeIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

27.27
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

28.28
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

29.29
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

30.30
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

31.31
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

32.32
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

33.33
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

34.34
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

35.35
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

36.36
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

37.37
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

38.38
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

39.39
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

40.40
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

41.41
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

42.42
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

43.43
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

44.44
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

45.45
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2906

1.1
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
removed call to com/fasterxml/aalto/util/TextBuilder::resetWithIndentation → NO_COVERAGE

2907

1.1
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE

5.5
Location : checkInTreeIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : checkInTreeIndentation
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2911

1.1
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : checkInTreeIndentation
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : checkInTreeIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2912

1.1
Location : checkInTreeIndentation
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : checkInTreeIndentation
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : checkInTreeIndentation
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : checkInTreeIndentation
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2916

1.1
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2917

1.1
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

8.8
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

9.9
Location : checkInTreeIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

10.10
Location : checkInTreeIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2918

1.1
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkInTreeIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : checkInTreeIndentation
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

7.7
Location : checkInTreeIndentation
Killed by : none
negated conditional → NO_COVERAGE

8.8
Location : checkInTreeIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

9.9
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

10.10
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

11.11
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

12.12
Location : checkInTreeIndentation
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

13.13
Location : checkInTreeIndentation
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

14.14
Location : checkInTreeIndentation
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

15.15
Location : checkInTreeIndentation
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

16.16
Location : checkInTreeIndentation
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2921

1.1
Location : checkInTreeIndentation
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : checkInTreeIndentation
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : checkInTreeIndentation
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : checkInTreeIndentation
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2922

1.1
Location : checkInTreeIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2.2
Location : checkInTreeIndentation
Killed by : none
removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → NO_COVERAGE

2923

1.1
Location : checkInTreeIndentation
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2933

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2935

1.1
Location : checkPrologIndentation
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

8.8
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

11.11
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

12.12
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

13.13
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

14.14
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

15.15
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

2936

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

8.8
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE

9.9
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

10.10
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

11.11
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

12.12
Location : checkPrologIndentation
Killed by : none
removed call to com/fasterxml/aalto/util/TextBuilder::resetWithIndentation → NO_COVERAGE

2937

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2939

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

10.10
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

11.11
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

13.13
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2940

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2943

1.1
Location : checkPrologIndentation
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

2945

1.1
Location : checkPrologIndentation
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

8.8
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

11.11
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

12.12
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

13.13
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

14.14
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

15.15
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

2946

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

8.8
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE

9.9
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

10.10
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

11.11
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

12.12
Location : checkPrologIndentation
Killed by : none
removed call to com/fasterxml/aalto/util/TextBuilder::resetWithIndentation → NO_COVERAGE

2947

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2949

1.1
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2950

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE

8.8
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE

9.9
Location : checkPrologIndentation
Killed by : none
negated conditional → NO_COVERAGE

10.10
Location : checkPrologIndentation
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

12.12
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

13.13
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

14.14
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

15.15
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

16.16
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

17.17
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

18.18
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

19.19
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

20.20
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

21.21
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

22.22
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2952

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 60 with 1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2953

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

8.8
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE

9.9
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

10.10
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

11.11
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

12.12
Location : checkPrologIndentation
Killed by : none
removed call to com/fasterxml/aalto/util/TextBuilder::resetWithIndentation → NO_COVERAGE

2954

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2957

1.1
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2958

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

8.8
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

9.9
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

10.10
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2959

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → NO_COVERAGE

2960

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2963

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2964

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2965

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

8.8
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

9.9
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

10.10
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE

11.11
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE

12.12
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE

13.13
Location : checkPrologIndentation
Killed by : none
negated conditional → NO_COVERAGE

14.14
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

15.15
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

16.16
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

17.17
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

18.18
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

19.19
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

20.20
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

21.21
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

2967

1.1
Location : checkPrologIndentation
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

8.8
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

11.11
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

12.12
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

13.13
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

14.14
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

15.15
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

2970

1.1
Location : checkPrologIndentation
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

8.8
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2973

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

2974

1.1
Location : checkPrologIndentation
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2975

1.1
Location : checkPrologIndentation
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

2977

1.1
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2978

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

8.8
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

9.9
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

10.10
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

2979

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

7.7
Location : checkPrologIndentation
Killed by : none
negated conditional → NO_COVERAGE

8.8
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

9.9
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

10.10
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

11.11
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

12.12
Location : checkPrologIndentation
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

13.13
Location : checkPrologIndentation
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

14.14
Location : checkPrologIndentation
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

15.15
Location : checkPrologIndentation
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

16.16
Location : checkPrologIndentation
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2982

1.1
Location : checkPrologIndentation
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

2983

1.1
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → NO_COVERAGE

2984

1.1
Location : checkPrologIndentation
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2988

1.1
Location : checkPrologIndentation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
removed call to com/fasterxml/aalto/util/TextBuilder::resetWithIndentation → NO_COVERAGE

2989

1.1
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkPrologIndentation
Killed by : none
Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE

5.5
Location : checkPrologIndentation
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : checkPrologIndentation
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2995

1.1
Location : parsePName
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → SURVIVED

3001

1.1
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED

5.5
Location : parsePName
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

7.7
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

9.9
Location : parsePName
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : parsePName
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

12.12
Location : parsePName
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

3002

1.1
Location : parsePName
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE

3004

1.1
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

3006

1.1
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

3009

1.1
Location : parsePName
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary → KILLED

2.2
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

3.3
Location : parsePName
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : parsePName
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : parsePName
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

3010

1.1
Location : parsePName
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → KILLED

3012

1.1
Location : parsePName
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

2.2
Location : parsePName
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

3014

1.1
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED

5.5
Location : parsePName
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

7.7
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

9.9
Location : parsePName
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : parsePName
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

12.12
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

3016

1.1
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

4.4
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

6.6
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

7.7
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

8.8
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

9.9
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

10.10
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED

11.11
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 58 with 1 → KILLED

12.12
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED

13.13
Location : parsePName
Killed by : none
changed conditional boundary → SURVIVED

14.14
Location : parsePName
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary → KILLED

15.15
Location : parsePName
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

16.16
Location : parsePName
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

17.17
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

18.18
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

19.19
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

20.20
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

21.21
Location : parsePName
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

22.22
Location : parsePName
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

23.23
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

24.24
Location : parsePName
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

25.25
Location : parsePName
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGE → KILLED

26.26
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

27.27
Location : parsePName
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

28.28
Location : parsePName
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

29.29
Location : parsePName
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

30.30
Location : parsePName
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

31.31
Location : parsePName
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

32.32
Location : parsePName
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

33.33
Location : parsePName
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

34.34
Location : parsePName
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

3018

1.1
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : parsePName
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_symbols mutated with null check on object → SURVIVED

3019

1.1
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

3022

1.1
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
mutated return of Object value for com/fasterxml/aalto/in/ReaderScanner::parsePName to ( if (x != null) null else throw new RuntimeException ) → KILLED

3025

1.1
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : parsePName
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

8.8
Location : parsePName
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

3026

1.1
Location : parsePName
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : parsePName
Killed by : none
negated conditional → SURVIVED

3.3
Location : parsePName
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

4.4
Location : parsePName
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

5.5
Location : parsePName
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

6.6
Location : parsePName
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

7.7
Location : parsePName
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

3027

1.1
Location : parsePName
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE

3029

1.1
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Changed increment from 1 to -1 → KILLED

2.2
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED

3.3
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED

4.4
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
UOI Mutator: Removed unary increment of local variable → KILLED

5.5
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
UOI Mutator: Reversed increment of local variable → KILLED

3030

1.1
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 31 with 1 → KILLED

5.5
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Replaced operate with second operand → KILLED

6.6
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Replaced operate with second operand → KILLED

7.7
Location : parsePName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

3038

1.1
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

3039

1.1
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

3040

1.1
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : addPName
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR

4.4
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED

5.5
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

3042

1.1
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

4.4
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

6.6
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

7.7
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → KILLED

8.8
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 57344 with 1 → KILLED

9.9
Location : addPName
Killed by : none
changed conditional boundary → SURVIVED

10.10
Location : addPName
Killed by : none
changed conditional boundary → SURVIVED

11.11
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

12.12
Location : addPName
Killed by : none
negated conditional → SURVIVED

13.13
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

14.14
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

15.15
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

16.16
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

17.17
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

18.18
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

19.19
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

20.20
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

21.21
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

22.22
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

23.23
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

24.24
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

3043

1.1
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

2.2
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFEQ → KILLED

3.3
Location : addPName
Killed by : none
changed conditional boundary to IFGE → SURVIVED

4.4
Location : addPName
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFLE → KILLED

6.6
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFLT → KILLED

3044

1.1
Location : addPName
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : addPName
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : addPName
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : addPName
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : addPName
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : addPName
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidNameChar → NO_COVERAGE

3047

1.1
Location : addPName
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : addPName
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : addPName
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : addPName
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : addPName
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : addPName
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

8.8
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

9.9
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

3048

1.1
Location : addPName
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidFirstSurrogate → NO_COVERAGE

3051

1.1
Location : addPName
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : addPName
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : addPName
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : addPName
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : addPName
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : addPName
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : addPName
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

8.8
Location : addPName
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

9.9
Location : addPName
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

10.10
Location : addPName
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

3052

1.1
Location : addPName
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : addPName
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

3.3
Location : addPName
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

4.4
Location : addPName
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

5.5
Location : addPName
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

3055

1.1
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary → KILLED

2.2
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Changed increment from 1 to -1 → KILLED

3.3
Location : addPName
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
negated conditional → KILLED

4.4
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

5.5
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

6.6
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

7.7
Location : addPName
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

8.8
Location : addPName
Killed by : sax.TestSaxReader.testPI(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

9.9
Location : addPName
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → TIMED_OUT

10.10
Location : addPName
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → SURVIVED

11.11
Location : addPName
Killed by : none
UOI Mutator: Removed unary increment of local variable → TIMED_OUT

12.12
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
UOI Mutator: Reversed increment of local variable → KILLED

3058

1.1
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

4.4
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : addPName
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR

6.6
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

7.7
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → KILLED

8.8
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 57344 with 1 → KILLED

9.9
Location : addPName
Killed by : none
changed conditional boundary → SURVIVED

10.10
Location : addPName
Killed by : none
changed conditional boundary → SURVIVED

11.11
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

12.12
Location : addPName
Killed by : none
negated conditional → SURVIVED

13.13
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

14.14
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

15.15
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

16.16
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

17.17
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGE → KILLED

18.18
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

19.19
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

20.20
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

21.21
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPGT → KILLED

22.22
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

23.23
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

24.24
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

3059

1.1
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 58 with 1 → KILLED

5.5
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

6.6
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPEQ → KILLED

8.8
Location : addPName
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IF_ICMPGE → KILLED

9.9
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

3060

1.1
Location : addPName
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : addPName
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

3.3
Location : addPName
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IFEQ → KILLED

4.4
Location : addPName
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IFGE → KILLED

5.5
Location : addPName
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IFGT → KILLED

6.6
Location : addPName
Killed by : none
changed conditional boundary to IFLE → SURVIVED

7.7
Location : addPName
Killed by : none
changed conditional boundary to IFNE → SURVIVED

3061

1.1
Location : addPName
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportMultipleColonsInName → NO_COVERAGE

3065

1.1
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

2.2
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFEQ → KILLED

3.3
Location : addPName
Killed by : none
changed conditional boundary to IFGE → SURVIVED

4.4
Location : addPName
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFLE → KILLED

6.6
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFLT → KILLED

3066

1.1
Location : addPName
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidNameChar → NO_COVERAGE

3070

1.1
Location : addPName
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : addPName
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : addPName
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : addPName
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : addPName
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : addPName
Killed by : none
changed conditional boundary → NO_COVERAGE

7.7
Location : addPName
Killed by : none
negated conditional → NO_COVERAGE

8.8
Location : addPName
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

9.9
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

10.10
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

11.11
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

13.13
Location : addPName
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

3071

1.1
Location : addPName
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidFirstSurrogate → NO_COVERAGE

3073

1.1
Location : addPName
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : addPName
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : addPName
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : addPName
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : addPName
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : addPName
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

3076

1.1
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : addPName
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_symbols mutated with null check on object → SURVIVED

7.7
Location : addPName
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
mutated return of Object value for com/fasterxml/aalto/in/ReaderScanner::addPName to ( if (x != null) null else throw new RuntimeException ) → KILLED

3082

1.1
Location : parsePublicId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → SURVIVED

3083

1.1
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

3085

1.1
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

3089

1.1
Location : parsePublicId
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

3.3
Location : parsePublicId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : parsePublicId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

3090

1.1
Location : parsePublicId
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

3093

1.1
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Replaced operate with second operand → KILLED

6.6
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : parsePublicId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : parsePublicId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : parsePublicId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

3094

1.1
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

2.2
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPEQ → KILLED

3.3
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGE → KILLED

4.4
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

5.5
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

6.6
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPLT → KILLED

3097

1.1
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

4.4
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

6.6
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

7.7
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED

8.8
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

9.9
Location : parsePublicId
Killed by : none
changed conditional boundary → SURVIVED

10.10
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

11.11
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

12.12
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

13.13
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

14.14
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

15.15
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

16.16
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

17.17
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

18.18
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

19.19
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPLT → KILLED

20.20
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPLT → KILLED

21.21
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPNE → KILLED

22.22
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPNE → KILLED

3098

1.1
Location : parsePublicId
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::throwUnexpectedChar → NO_COVERAGE

3102

1.1
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED

5.5
Location : parsePublicId
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : parsePublicId
Killed by : none
negated conditional → SURVIVED

7.7
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

9.9
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

10.10
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

11.11
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

3103

1.1
Location : parsePublicId
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : parsePublicId
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : parsePublicId
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : parsePublicId
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : parsePublicId
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

3106

1.1
Location : parsePublicId
Killed by : none
negated conditional → SURVIVED

2.2
Location : parsePublicId
Killed by : none
changed conditional boundary to IFGE → SURVIVED

3.3
Location : parsePublicId
Killed by : none
changed conditional boundary to IFGT → SURVIVED

4.4
Location : parsePublicId
Killed by : none
changed conditional boundary to IFLE → SURVIVED

5.5
Location : parsePublicId
Killed by : none
changed conditional boundary to IFLT → SURVIVED

6.6
Location : parsePublicId
Killed by : none
changed conditional boundary to IFNE → SURVIVED

3107

1.1
Location : parsePublicId
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : parsePublicId
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

4.4
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

5.5
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

6.6
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

3108

1.1
Location : parsePublicId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_textBuilder mutated with null check on object → NO_COVERAGE

3109

1.1
Location : parsePublicId
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : parsePublicId
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : parsePublicId
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : parsePublicId
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : parsePublicId
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

3111

1.1
Location : parsePublicId
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : parsePublicId
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : parsePublicId
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : parsePublicId
Killed by : none
Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE

5.5
Location : parsePublicId
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

6.6
Location : parsePublicId
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : parsePublicId
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE

8.8
Location : parsePublicId
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE

9.9
Location : parsePublicId
Killed by : none
UOI Mutator: Removed unary increment of local variable → NO_COVERAGE

10.10
Location : parsePublicId
Killed by : none
UOI Mutator: Reversed increment of local variable → NO_COVERAGE

3112

1.1
Location : parsePublicId
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : parsePublicId
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : parsePublicId
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : parsePublicId
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : parsePublicId
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

3114

1.1
Location : parsePublicId
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : parsePublicId
Killed by : none
negated conditional → SURVIVED

3.3
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

4.4
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

5.5
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

6.6
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

7.7
Location : parsePublicId
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

3115

1.1
Location : parsePublicId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE

3116

1.1
Location : parsePublicId
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : parsePublicId
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : parsePublicId
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : parsePublicId
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : parsePublicId
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

3118

1.1
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Changed increment from 1 to -1 → KILLED

2.2
Location : parsePublicId
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → SURVIVED

3.3
Location : parsePublicId
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → SURVIVED

4.4
Location : parsePublicId
Killed by : none
UOI Mutator: Removed unary increment of local variable → SURVIVED

5.5
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
UOI Mutator: Reversed increment of local variable → KILLED

3120

1.1
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : parsePublicId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : parsePublicId
Killed by : none
mutated return of Object value for com/fasterxml/aalto/in/ReaderScanner::parsePublicId to ( if (x != null) null else throw new RuntimeException ) → SURVIVED

3126

1.1
Location : parseSystemId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → SURVIVED

3127

1.1
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

3129

1.1
Location : parseSystemId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldATTR_CHARS mutated with null check on object → SURVIVED

3134

1.1
Location : parseSystemId
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

3.3
Location : parseSystemId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : parseSystemId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : parseSystemId
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

3135

1.1
Location : parseSystemId
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

3137

1.1
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Replaced operate with second operand → KILLED

6.6
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : parseSystemId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : parseSystemId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : parseSystemId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

3138

1.1
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

2.2
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IFGE → KILLED

3.3
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IFGT → KILLED

4.4
Location : parseSystemId
Killed by : none
changed conditional boundary to IFLE → SURVIVED

5.5
Location : parseSystemId
Killed by : none
changed conditional boundary to IFLT → SURVIVED

6.6
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IFNE → KILLED

3144

1.1
Location : parseSystemId
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : parseSystemId
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : parseSystemId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : parseSystemId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : parseSystemId
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : parseSystemId
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : parseSystemId
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : parseSystemId
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : parseSystemId
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

3145

1.1
Location : parseSystemId
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

3147

1.1
Location : parseSystemId
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : parseSystemId
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : parseSystemId
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : parseSystemId
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : parseSystemId
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : parseSystemId
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : parseSystemId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : parseSystemId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : parseSystemId
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

10.10
Location : parseSystemId
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

11.11
Location : parseSystemId
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : parseSystemId
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

13.13
Location : parseSystemId
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

3148

1.1
Location : parseSystemId
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : parseSystemId
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : parseSystemId
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : parseSystemId
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : parseSystemId
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : parseSystemId
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : parseSystemId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : parseSystemId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

3150

1.1
Location : parseSystemId
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

3152

1.1
Location : parseSystemId
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : parseSystemId
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : parseSystemId
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : parseSystemId
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

5.5
Location : parseSystemId
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

3155

1.1
Location : parseSystemId
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::markLF → NO_COVERAGE

3159

1.1
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
negated conditional → KILLED

2.2
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPEQ → KILLED

3.3
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
changed conditional boundary to IF_ICMPGE → KILLED

4.4
Location : parseSystemId
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

5.5
Location : parseSystemId
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

6.6
Location : parseSystemId
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

3164

1.1
Location : parseSystemId
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : parseSystemId
Killed by : none
negated conditional → SURVIVED

3.3
Location : parseSystemId
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

4.4
Location : parseSystemId
Killed by : none
changed conditional boundary to IF_ICMPGE → SURVIVED

5.5
Location : parseSystemId
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

6.6
Location : parseSystemId
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

7.7
Location : parseSystemId
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

3165

1.1
Location : parseSystemId
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE

3166

1.1
Location : parseSystemId
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : parseSystemId
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : parseSystemId
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : parseSystemId
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : parseSystemId
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

3168

1.1
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Changed increment from 1 to -1 → KILLED

2.2
Location : parseSystemId
Killed by : none
UOI Mutator: Added unary decrement 1 -> 0 to local variable → SURVIVED

3.3
Location : parseSystemId
Killed by : none
UOI Mutator: Added unary increment 1 -> 2 to local variable → SURVIVED

4.4
Location : parseSystemId
Killed by : none
UOI Mutator: Removed unary increment of local variable → SURVIVED

5.5
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
UOI Mutator: Reversed increment of local variable → KILLED

3170

1.1
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : parseSystemId
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : parseSystemId
Killed by : none
mutated return of Object value for com/fasterxml/aalto/in/ReaderScanner::parseSystemId to ( if (x != null) null else throw new RuntimeException ) → SURVIVED

3187

1.1
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 56320 with 1 → KILLED

5.5
Location : checkSurrogate
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
negated conditional → KILLED

7.7
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPEQ → KILLED

9.9
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGE → KILLED

10.10
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

11.11
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

12.12
Location : checkSurrogate
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

3188

1.1
Location : checkSurrogate
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidFirstSurrogate → NO_COVERAGE

3190

1.1
Location : checkSurrogate
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
negated conditional → KILLED

3.3
Location : checkSurrogate
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : checkSurrogate
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

5.5
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPEQ → KILLED

6.6
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGE → KILLED

7.7
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

8.8
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

9.9
Location : checkSurrogate
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

3191

1.1
Location : checkSurrogate
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

3193

1.1
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Replaced operate with second operand → KILLED

6.6
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : checkSurrogate
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : checkSurrogate
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : checkSurrogate
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

3194

1.1
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

4.4
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

6.6
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

7.7
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 56320 with 1 → KILLED

8.8
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 57344 with 1 → KILLED

9.9
Location : checkSurrogate
Killed by : none
changed conditional boundary → SURVIVED

10.10
Location : checkSurrogate
Killed by : none
changed conditional boundary → SURVIVED

11.11
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
negated conditional → KILLED

12.12
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
negated conditional → KILLED

13.13
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

14.14
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

15.15
Location : checkSurrogate
Killed by : none
changed conditional boundary to IF_ICMPEQ → SURVIVED

16.16
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPEQ → KILLED

17.17
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGE → KILLED

18.18
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGE → KILLED

19.19
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

20.20
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

21.21
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

22.22
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

23.23
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPNE → KILLED

24.24
Location : checkSurrogate
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

3195

1.1
Location : checkSurrogate
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidSecondSurrogate → NO_COVERAGE

3198

1.1
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

3.3
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

4.4
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

5.5
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

6.6
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

7.7
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

8.8
Location : checkSurrogate
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → MEMORY_ERROR

9.9
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

10.10
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → KILLED

11.11
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Replaced operate with second operand → KILLED

12.12
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED

13.13
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 65536 with 1 → KILLED

14.14
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Replaced operate with second operand → KILLED

15.15
Location : checkSurrogate
Killed by : none
Replaced Shift Left with Shift Right → SURVIVED

16.16
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

17.17
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

18.18
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

3199

1.1
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → KILLED

5.5
Location : checkSurrogate
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
negated conditional → KILLED

7.7
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPEQ → KILLED

9.9
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGE → KILLED

10.10
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

11.11
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateSkipping(stream.TestSurrogates)
changed conditional boundary to IF_ICMPGT → KILLED

12.12
Location : checkSurrogate
Killed by : none
changed conditional boundary to IF_ICMPLT → SURVIVED

13.13
Location : checkSurrogate
Killed by : none
changed conditional boundary to IF_ICMPNE → SURVIVED

3200

1.1
Location : checkSurrogate
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidXmlChar → NO_COVERAGE

3202

1.1
Location : checkSurrogate
Killed by : stream.TestSurrogates.testSurrogateParsing(stream.TestSurrogates)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

3208

1.1
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE

5.5
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : checkSurrogateNameChar
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

3209

1.1
Location : checkSurrogateNameChar
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidFirstSurrogate → NO_COVERAGE

3211

1.1
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE

8.8
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE

9.9
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary → NO_COVERAGE

11.11
Location : checkSurrogateNameChar
Killed by : none
negated conditional → NO_COVERAGE

12.12
Location : checkSurrogateNameChar
Killed by : none
negated conditional → NO_COVERAGE

13.13
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

14.14
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

15.15
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

16.16
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

17.17
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

18.18
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

19.19
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

20.20
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

21.21
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

22.22
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

23.23
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

24.24
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

3212

1.1
Location : checkSurrogateNameChar
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidSecondSurrogate → NO_COVERAGE

3215

1.1
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

4.4
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

6.6
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

7.7
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

8.8
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

9.9
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

10.10
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

11.11
Location : checkSurrogateNameChar
Killed by : none
Replaced operate with second operand → NO_COVERAGE

12.12
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

13.13
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE

14.14
Location : checkSurrogateNameChar
Killed by : none
Replaced operate with second operand → NO_COVERAGE

15.15
Location : checkSurrogateNameChar
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

16.16
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

17.17
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

18.18
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

3216

1.1
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → NO_COVERAGE

5.5
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : checkSurrogateNameChar
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : checkSurrogateNameChar
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

13.13
Location : checkSurrogateNameChar
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

3217

1.1
Location : checkSurrogateNameChar
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidXmlChar → NO_COVERAGE

3221

1.1
Location : checkSurrogateNameChar
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidNameChar → NO_COVERAGE

3223

1.1
Location : checkSurrogateNameChar
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3235

1.1
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE

5.5
Location : decodeSurrogate
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : decodeSurrogate
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : decodeSurrogate
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

3236

1.1
Location : decodeSurrogate
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidFirstSurrogate → NO_COVERAGE

3238

1.1
Location : decodeSurrogate
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : decodeSurrogate
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : decodeSurrogate
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : decodeSurrogate
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

5.5
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

6.6
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

7.7
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

9.9
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

3239

1.1
Location : decodeSurrogate
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::loadMoreGuaranteed → NO_COVERAGE

3241

1.1
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : decodeSurrogate
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : decodeSurrogate
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : decodeSurrogate
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : decodeSurrogate
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : decodeSurrogate
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

3242

1.1
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

4.4
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

6.6
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

7.7
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE

8.8
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE

9.9
Location : decodeSurrogate
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : decodeSurrogate
Killed by : none
changed conditional boundary → NO_COVERAGE

11.11
Location : decodeSurrogate
Killed by : none
negated conditional → NO_COVERAGE

12.12
Location : decodeSurrogate
Killed by : none
negated conditional → NO_COVERAGE

13.13
Location : decodeSurrogate
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

14.14
Location : decodeSurrogate
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

15.15
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

16.16
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

17.17
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

18.18
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

19.19
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

20.20
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

21.21
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

22.22
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

23.23
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

24.24
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

3243

1.1
Location : decodeSurrogate
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidSecondSurrogate → NO_COVERAGE

3246

1.1
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

3.3
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

4.4
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

5.5
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

6.6
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

7.7
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

8.8
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

9.9
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

10.10
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE

11.11
Location : decodeSurrogate
Killed by : none
Replaced operate with second operand → NO_COVERAGE

12.12
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE

13.13
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE

14.14
Location : decodeSurrogate
Killed by : none
Replaced operate with second operand → NO_COVERAGE

15.15
Location : decodeSurrogate
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

16.16
Location : decodeSurrogate
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

17.17
Location : decodeSurrogate
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

18.18
Location : decodeSurrogate
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

3247

1.1
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : decodeSurrogate
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → NO_COVERAGE

5.5
Location : decodeSurrogate
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : decodeSurrogate
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : decodeSurrogate
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

10.10
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

12.12
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

13.13
Location : decodeSurrogate
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

3248

1.1
Location : decodeSurrogate
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInvalidXmlChar → NO_COVERAGE

3250

1.1
Location : decodeSurrogate
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3256

1.1
Location : reportInvalidFirstSurrogate
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE

3262

1.1
Location : reportInvalidSecondSurrogate
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE

3274

1.1
Location : getCurrentLocation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_config mutated with null check on object → SURVIVED

2.2
Location : getCurrentLocation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
mutated return of Object value for com/fasterxml/aalto/in/ReaderScanner::getCurrentLocation to ( if (x != null) null else throw new RuntimeException ) → KILLED

3275

1.1
Location : getCurrentLocation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Replaced operate with second operand → KILLED

2.2
Location : getCurrentLocation
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Replaced operate with second operand → KILLED

3.3
Location : getCurrentLocation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_config mutated with null check on object → SURVIVED

4.4
Location : getCurrentLocation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_pastBytesOrChars mutated with null check on object → SURVIVED

5.5
Location : getCurrentLocation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

6.6
Location : getCurrentLocation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currRow mutated with null check on object → SURVIVED

7.7
Location : getCurrentLocation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

8.8
Location : getCurrentLocation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → SURVIVED

3281

1.1
Location : getCurrentColumnNr
Killed by : none
Replaced operate with second operand → NO_COVERAGE

2.2
Location : getCurrentColumnNr
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

3.3
Location : getCurrentColumnNr
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → NO_COVERAGE

4.4
Location : getCurrentColumnNr
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3287

1.1
Location : getStartingByteOffset
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : getStartingByteOffset
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : getStartingByteOffset
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : getStartingByteOffset
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED

5.5
Location : getStartingByteOffset
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : getStartingByteOffset
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
replaced return of long value with value + 1 for com/fasterxml/aalto/in/ReaderScanner::getStartingByteOffset → KILLED

3292

1.1
Location : getStartingCharOffset
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_startRawOffset mutated with null check on object → SURVIVED

2.2
Location : getStartingCharOffset
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
replaced return of long value with value + 1 for com/fasterxml/aalto/in/ReaderScanner::getStartingCharOffset → KILLED

3298

1.1
Location : getEndingByteOffset
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : getEndingByteOffset
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : getEndingByteOffset
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : getEndingByteOffset
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED

5.5
Location : getEndingByteOffset
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : getEndingByteOffset
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
replaced return of long value with value + 1 for com/fasterxml/aalto/in/ReaderScanner::getEndingByteOffset → KILLED

3304

1.1
Location : getEndingCharOffset
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
negated conditional → KILLED

2.2
Location : getEndingCharOffset
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_tokenIncomplete mutated with null check on object → SURVIVED

3.3
Location : getEndingCharOffset
Killed by : none
changed conditional boundary to IFGE → SURVIVED

4.4
Location : getEndingCharOffset
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IFGT → KILLED

5.5
Location : getEndingCharOffset
Killed by : none
changed conditional boundary to IFLE → SURVIVED

6.6
Location : getEndingCharOffset
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IFLT → KILLED

7.7
Location : getEndingCharOffset
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
changed conditional boundary to IFNE → KILLED

3305

1.1
Location : getEndingCharOffset
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::finishToken → NO_COVERAGE

3307

1.1
Location : getEndingCharOffset
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
Replaced operate with second operand → KILLED

2.2
Location : getEndingCharOffset
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_pastBytesOrChars mutated with null check on object → SURVIVED

3.3
Location : getEndingCharOffset
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : getEndingCharOffset
Killed by : stream.TestSimple.testNamespacesChars(stream.TestSimple)
replaced return of long value with value + 1 for com/fasterxml/aalto/in/ReaderScanner::getEndingCharOffset → KILLED

3312

1.1
Location : markLF
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → NO_COVERAGE

3313

1.1
Location : markLF
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : markLF
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : markLF
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : markLF
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : markLF
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : markLF
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : markLF
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currRow mutated with null check on object → NO_COVERAGE

8.8
Location : markLF
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currRow mutated with null check on object → NO_COVERAGE

3318

1.1
Location : markLF
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

2.2
Location : markLF
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → SURVIVED

3319

1.1
Location : markLF
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : markLF
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : markLF
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : markLF
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : markLF
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Replaced operate with second operand → KILLED

6.6
Location : markLF
Killed by : sax.TestEntityResolver.testWithDummyExtSubset(sax.TestEntityResolver)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : markLF
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currRow mutated with null check on object → SURVIVED

8.8
Location : markLF
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currRow mutated with null check on object → SURVIVED

3323

1.1
Location : setStartLocation
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Replaced operate with second operand → KILLED

2.2
Location : setStartLocation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_pastBytesOrChars mutated with null check on object → SURVIVED

3.3
Location : setStartLocation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

4.4
Location : setStartLocation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_startRawOffset mutated with null check on object → SURVIVED

3324

1.1
Location : setStartLocation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currRow mutated with null check on object → SURVIVED

2.2
Location : setStartLocation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_startRow mutated with null check on object → SURVIVED

3325

1.1
Location : setStartLocation
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Replaced operate with second operand → KILLED

2.2
Location : setStartLocation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

3.3
Location : setStartLocation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → SURVIVED

4.4
Location : setStartLocation
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_startColumn mutated with null check on object → SURVIVED

3338

1.1
Location : loadMore
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

2.2
Location : loadMore
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → SURVIVED

3339

1.1
Location : loadMore
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : loadMore
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : loadMore
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : loadMore
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : loadMore
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : loadMore
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

3340

1.1
Location : loadMore
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : loadMore
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : loadMore
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : loadMore
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : loadMore
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : loadMore
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3344

1.1
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Replaced operate with second operand → KILLED

2.2
Location : loadMore
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_pastBytesOrChars mutated with null check on object → SURVIVED

3.3
Location : loadMore
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

4.4
Location : loadMore
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_pastBytesOrChars mutated with null check on object → SURVIVED

3345

1.1
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Replaced operate with second operand → KILLED

2.2
Location : loadMore
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → SURVIVED

3.3
Location : loadMore
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

4.4
Location : loadMore
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → SURVIVED

3346

1.1
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : loadMore
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

3349

1.1
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : loadMore
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → SURVIVED

7.7
Location : loadMore
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : loadMore
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

3350

1.1
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : loadMore
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

7.7
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

8.8
Location : loadMore
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IF_ICMPEQ → KILLED

9.9
Location : loadMore
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

10.10
Location : loadMore
Killed by : none
changed conditional boundary to IF_ICMPGT → SURVIVED

11.11
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPLT → KILLED

12.12
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IF_ICMPNE → KILLED

3351

1.1
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : loadMore
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

3352

1.1
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
negated conditional → KILLED

2.2
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFEQ → KILLED

3.3
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFGE → KILLED

4.4
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
changed conditional boundary to IFGT → KILLED

5.5
Location : loadMore
Killed by : none
changed conditional boundary to IFLE → SURVIVED

6.6
Location : loadMore
Killed by : none
changed conditional boundary to IFLT → SURVIVED

3356

1.1
Location : loadMore
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

2.2
Location : loadMore
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE

3358

1.1
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED

5.5
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : loadMore
Killed by : sax.TestSaxReader.testSimpleReader(sax.TestSaxReader)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

3360

1.1
Location : loadMore
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → SURVIVED

3361

1.1
Location : loadMore
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : loadMore
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : loadMore
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : loadMore
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : loadMore
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

6.6
Location : loadMore
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

3369

1.1
Location : loadOne
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : loadOne
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

3.3
Location : loadOne
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

4.4
Location : loadOne
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : loadOne
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : loadOne
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

3370

1.1
Location : loadOne
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_currToken mutated with null check on object → NO_COVERAGE

2.2
Location : loadOne
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE

3372

1.1
Location : loadOne
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : loadOne
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : loadOne
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : loadOne
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : loadOne
Killed by : none
Replaced operate with second operand → NO_COVERAGE

6.6
Location : loadOne
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

7.7
Location : loadOne
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

8.8
Location : loadOne
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

9.9
Location : loadOne
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

10.10
Location : loadOne
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3378

1.1
Location : loadOne
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
negated conditional → KILLED

2.2
Location : loadOne
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IFEQ → KILLED

3.3
Location : loadOne
Killed by : none
changed conditional boundary to IFGE → SURVIVED

4.4
Location : loadOne
Killed by : none
changed conditional boundary to IFGT → SURVIVED

5.5
Location : loadOne
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IFLE → KILLED

6.6
Location : loadOne
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
changed conditional boundary to IFLT → KILLED

3379

1.1
Location : loadOne
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE

3381

1.1
Location : loadOne
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED

2.2
Location : loadOne
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED

3.3
Location : loadOne
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED

4.4
Location : loadOne
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED

5.5
Location : loadOne
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Replaced operate with second operand → KILLED

6.6
Location : loadOne
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
Bug fixed: Negate variable, Substituted -1 with 1 → KILLED

7.7
Location : loadOne
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → SURVIVED

8.8
Location : loadOne
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

9.9
Location : loadOne
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → SURVIVED

10.10
Location : loadOne
Killed by : wstream.TestLongerContent.testLongerWithMultiByteCharsCData(wstream.TestLongerContent)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

3390

1.1
Location : loadAndRetain
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → NO_COVERAGE

3391

1.1
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : loadAndRetain
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : loadAndRetain
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3396

1.1
Location : loadAndRetain
Killed by : none
Replaced operate with second operand → NO_COVERAGE

2.2
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_pastBytesOrChars mutated with null check on object → NO_COVERAGE

3.3
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_pastBytesOrChars mutated with null check on object → NO_COVERAGE

3397

1.1
Location : loadAndRetain
Killed by : none
Replaced operate with second operand → NO_COVERAGE

2.2
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → NO_COVERAGE

3.3
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

4.4
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_rowStartOffset mutated with null check on object → NO_COVERAGE

3399

1.1
Location : loadAndRetain
Killed by : none
Replaced operate with second operand → NO_COVERAGE

2.2
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

3.3
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

3400

1.1
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : loadAndRetain
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

7.7
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

8.8
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

9.9
Location : loadAndRetain
Killed by : none
removed call to java/lang/System::arraycopy → NO_COVERAGE

3401

1.1
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : loadAndRetain
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputPtr mutated with null check on object → NO_COVERAGE

3402

1.1
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

3406

1.1
Location : loadAndRetain
Killed by : none
Replaced operate with second operand → NO_COVERAGE

2.2
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

3.3
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

3407

1.1
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_in mutated with null check on object → NO_COVERAGE

2.2
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE

3.3
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

3408

1.1
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : loadAndRetain
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : loadAndRetain
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : loadAndRetain
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

8.8
Location : loadAndRetain
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

9.9
Location : loadAndRetain
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

10.10
Location : loadAndRetain
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

11.11
Location : loadAndRetain
Killed by : none
changed conditional boundary to IF_ICMPLT → NO_COVERAGE

12.12
Location : loadAndRetain
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

3409

1.1
Location : loadAndRetain
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : loadAndRetain
Killed by : none
changed conditional boundary to IFEQ → NO_COVERAGE

3.3
Location : loadAndRetain
Killed by : none
changed conditional boundary to IFGE → NO_COVERAGE

4.4
Location : loadAndRetain
Killed by : none
changed conditional boundary to IFGT → NO_COVERAGE

5.5
Location : loadAndRetain
Killed by : none
changed conditional boundary to IFLE → NO_COVERAGE

6.6
Location : loadAndRetain
Killed by : none
changed conditional boundary to IFLT → NO_COVERAGE

3411

1.1
Location : loadAndRetain
Killed by : none
removed call to com/fasterxml/aalto/in/ReaderScanner::reportInputProblem → NO_COVERAGE

3413

1.1
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE

5.5
Location : loadAndRetain
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : loadAndRetain
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3415

1.1
Location : loadAndRetain
Killed by : none
Replaced operate with second operand → NO_COVERAGE

2.2
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

3.3
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

3416

1.1
Location : loadAndRetain
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : loadAndRetain
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : loadAndRetain
Killed by : none
M1: field dereference on object com/fasterxml/aalto/in/ReaderScanner and field_inputEnd mutated with null check on object → NO_COVERAGE

4.4
Location : loadAndRetain
Killed by : none
changed conditional boundary to IF_ICMPEQ → NO_COVERAGE

5.5
Location : loadAndRetain
Killed by : none
changed conditional boundary to IF_ICMPGE → NO_COVERAGE

6.6
Location : loadAndRetain
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

7.7
Location : loadAndRetain
Killed by : none
changed conditional boundary to IF_ICMPGT → NO_COVERAGE

8.8
Location : loadAndRetain
Killed by : none
changed conditional boundary to IF_ICMPNE → NO_COVERAGE

3417

1.1
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE

2.2
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE

3.3
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE

4.4
Location : loadAndRetain
Killed by : none
Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE

5.5
Location : loadAndRetain
Killed by : none
Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE

6.6
Location : loadAndRetain
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

Active mutators

Tests examined


Report generated by PIT 3.3.3